.hero{
    background-image: url("../images/other/hero-cakes.webp");
    background-position: center;
    background-size: cover;
}

.hero-overlay{
    background-color: rgba(0, 0, 0, 0.5);
    
    padding: 150px 20px;

    width: 100%;
    height: 100%;
    
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hero-overlay > h1{
    padding-bottom: 20px;
    font-size: 60px;
    color: #fff;
}

.hero-overlay > p{
    padding-bottom: 20px;
    font-size: 25px;
    text-align: center;
    color: #fff;
}

.hero-overlay > a{
    font-size: 20px;
    text-decoration: none;
    font-weight: 600;

    padding: 10px 20px;

    border: 1px solid #fff;
    background-color: #fff;
    color: #333;
    border-radius: 5px;

    transition: all 0.5s;
}

.hero-overlay > a:hover{
    background-color: transparent;
    color: #fff;
}

@media (max-width: 600px) {
    .hero-overlay{
        padding: 70px 20px;
    }

    .hero-overlay > h1{
        font-size: 30px;
    }

    .hero-overlay > p{
        font-size: 18px;
    }

    .hero-overlay > a{
        font-size: 18px;
    }
}

.product{
    padding: 100px 20px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.product-card{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    width: 300px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 5px;
}

.product-card > img{
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;

    height: 200px;
    width: 100%;
    object-fit: cover;
}

.product-card > div{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    
    padding: 20px;
    width: 100%;

    background-color: #f1f1f1;
    color: #333;

    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.product-name{
    font-size: 18px;
    text-align: center;
}

.product-price{
    font-size: 35px;
}