/* landing.css */

body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
}

body {
    width: 100%;
    max-width: 800px;
    background-image: url("../images/front_cover.jpg");
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    height: 100vh;
}

.container {
    margin-top: 20px;
    width: calc(100% - 40px);
    max-width: 600px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

h1 {
    margin: 20px 0;
    color: #9c2d24;
    text-align: center;
}

h3 {
    margin: 0;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
}

p {
    margin: 20px;
    font-size: 1.0em;
    color: #555;
}

button {
    margin: 20px;
    width: auto;
    padding: 15px 30px;
    font-size: 1em;
    color: #fff;
    background-color: #9c2d24;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #7f241d;
}
