body{
    color: black;
}

#hero{
    margin-top: 2rem;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    color: white;
}

#hero > h1{
    font-size: 6rem;
    margin: 0;
    font-weight: bold;
    
}
#hero > p {
    font-size: 2rem;
    margin: 0;
}
#hero > a{
    background-color: #e2c36c;
    color: black;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 2rem;
    text-decoration: none;
}

#hero-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center;
    position: absolute;
    z-index: -1;
}
#hero::after{
    content: "";
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(0, 0, 0, 0.322) 25%); 
    position: absolute;
    z-index: -1;
    height: 100%;
    width: 100%;
}

#gallery-buttons{
    width: fit-content;
    margin: 1rem auto;
}
.gallery-button{
    font-size: 1rem;
    background-color: white;
    border: none;
    margin: 0 1rem;
    padding: 1rem;
    width: 130px;
    cursor: pointer;
}
.active-button{
    color: white;
    background-color: black;
}

.css-15ewv6a{
    background-color: rgba(0, 0, 0, 0.034);
    font-size: 10px;
    display: none;
}
#video-div{
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}