* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
    
}

body {
    font-family: Arial, sans-serif;
    background-image: url('../images/background2.jpg');
    background-size: 100% 100%;
    min-height: 100dvh;
    background-attachment: fixed;
}

main {
    margin-top: 100px;
}

#header {
    background-color: #bc6659;
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 10px 20px; 
    width: 100%;
    position: fixed;
    top: 0;
}

#header a {
    text-decoration: none;
    color: white;
    background-color: transparent;
    padding: 10px 15px;
    margin-right: 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

#header a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.title {
    border-radius: 50px;
    background-color: #e3a57f;
    width: 40%;
    text-align: center;
    font-size: 50px;
    padding: 20px;
}

.centered {
    justify-self: center;
    margin: 25px;
    justify-content: center;
    align-content: center;
}

.text {
    font-size: 20px;
    text-align: center;
}

.textBox {
    background-color: #f3d5a0;
    border-radius: 50px;
    width: 60%;
    padding: 20px;
}

.textBoxImage {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.logo {
    width: 50%;
}