body {
    background-color: #F8F1F1;
}

.navigation {
    width: 80%;
    margin: auto;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;


}


.navlinks > a {
    color: #16697A;
    text-decoration: none;
    margin: 16px;
    font-size: 20px;
}

.signin {
    padding: 10px;
    border-radius: 9999px;
    background-color: #16697A;
}
.signin > a {
    text-decoration: none;
    color: #fff;
}

.navlinks > button:hover {
    background-color: #FFA62B;
}

.hero {
    width: 100%;
    /* height: 100vh; */
    overflow: hidden;
    position: relative;
}
.hero img {
    width: 100%;
    height: 90vh;
    margin-top: 1rem;
    object-fit: cover;
    display: block;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #F8F1F1;
    
}

.hero-content button {
    font-weight: bold;
    font-size: x-large;
    margin: 10px;
    padding: 20px;
    border-radius: 9999px;
    border: none;
    background-color: #DB6400;
    color: #F8F1F1;
}
.hero-content button > a{
    text-decoration: none;
    color: #fff;
}

.hero-content button:hover {
    background-color: #FFA62B;
}


footer {
    margin: auto;
    margin-top: 0rem;
    background-color: #DB6400;
    color: white;
    padding: 20px;
    text-align: center;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}
/* Media Queries */
@media screen and (min-width: 768px) {
    .navigation {
        width: 80%;
    }

    .navlinks > a {
        margin: 16px;
        font-size: 20px;
    }

    .hero-content h1 {
        font-size: 50px;
    }

    .hero-content h2 {
        font-size: 24px;
    }

    .hero-content button {
        font-size: 16px;
    }
}