body {
background-color: #fff4f4;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: center;
    align-items: center;
}
.container {
    background: #f6a0a0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
input {
    padding: 10px;
    margin: 10px 0;
    width: 100%;
    border: none;
    border-radius: 5px;
}
button {
    background: #ff6f61;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

main {
    min-height: 100vh;
    display: flex;
    /* height: 100vh; */
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    }

header {
    width: 100%;
}

.site-logo {
    position: absolute;
}

nav {
    display: flex;
    gap: 20px;
    transition: max-height 0.3s ease;
    position: absolute;
    top: 20rem;
    align-self: center;
    width: 90%;
    margin-left: 5rem;
}

header div {
    height: 20rem;
}

@media (max-width: 768px) {
    nav {
        width: 90%;
        margin-left: 5%;
        top: 11rem;
    }

    nav.open {
        max-height: 500px;
        left: 0;
        padding-bottom: 20px;
        top: 11rem;
        width: 90%;
    }
}