
main {
    min-height: 100vh;
}
#hero {
    position: relative;
    min-height: 60vh;
    background-image: url(/assets/images/hero.webp);
    background-size:cover;
    background-position: top;
}
#hero h1 {
    color: aliceblue;
    text-shadow: 0 0 2px black;
    padding: 1rem;
}
#hero button {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    border-style: dotted;
    width: 8ch;
    height: 8ch;
    border-radius: 50%;
    box-shadow: inset 0 0 10px white;
    background-color: aliceblue;
}

#featured h2 {
    margin: 2rem;
}
.carousel {
    overflow: hidden;
    margin: 1rem;
}
.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    padding: 1.5rem;
}
.carousel-track .card {
    min-width: 33.33%;
    box-shadow: 0 0 25px black;
    border-radius: 15px;
    flex-shrink: 0;
    margin: 5%;
    padding: 0.5rem;
    text-align: center;
}
.card img {
    width: 33.33vw;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.card a {
    color: black;
    text-decoration: none;
}

#about {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 1rem;
    height: 40vh;
}
#about h1,#about h3 {
    padding: 1rem;
    max-width: 50ch;
}





@media screen and (max-width: 480px) {
    .carousel-track .card {
        min-width: 0;
        width: 80vw;
    }

}



    

