/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #F4F1DE; /* Light beige background */
    color: #3D405B; /* Dark desaturated blue for text */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 90%;
    max-width: 600px;
    text-align: center;
}

.header {
    margin-bottom: 20px;
}

.main-content {
    background-color: #E07A5F; /* Moderate red */
    padding: 20px;
    border-radius: 10px;
    color: #FFFFFF; /* White text */
}

.footer {
    margin-top: 20px;
    color: #81B29A; /* Soft cyan - lime green */
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }

    .main-content {
        font-size: 1rem;
        padding: 15px;
    }

    .footer p {
        font-size: 0.8rem;
    }
}


.logo {
    font-family: 'Lilita One', cursive; /*  for a playful look */
    font-size: 3rem;
    color: #FF9F1C; /* A cheerful orange */
    text-shadow: 2px 2px 2px #E07A5F; /* Adding a slight shadow with moderate red */
}

/* Responsive adjustments for the logo */
@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
    }
}

.bio {
    margin: 30px auto;
    padding: 20px;
    background-color: #F2CC8F; /* A soft peach */
    color: #3D405B; /* Consistent dark desaturated blue for text */
    border-radius: 10px;
    font-size: 1rem;
}

.bio h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.bio p {
    line-height: 1.6;
}

@media (max-width: 768px) {
    .bio {
        padding: 15px;
    }

    .bio h2 {
        font-size: 1.2rem;
    }

    .bio p {
        font-size: 0.9rem;
    }
}

.contact-form {
    background-color: #ffffff; /* White background */
    padding: 20px;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 600px;
}

.contact-form h2 {
    color: #3D405B; /* Dark desaturated blue for text */
    margin-bottom: 20px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background-color: #E07A5F; /* Moderate red */
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.contact-form button:hover {
    background-color: #FF9F1C; /* A cheerful orange */
}

.thank-you-content {
    padding: 20px;
    background-color: #E4E1DE; /* A lighter shade for a soothing effect */
    border-radius: 10px;
    margin: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center; /* Centering the text */
}

.thank-you-content h2 {
    color: #3D405B; /* Dark desaturated blue */
    margin-bottom: 15px;
}

.thank-you-content p {
    color: #626567; /* Slightly lighter gray for contrast */
    font-size: 1.1rem; /* Slightly larger font for importance */
}