body
{
    background-image: url("Images/background.jpg");
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #f0e29a;
}

.carousel-inner img 
{
    height: 600px;
    object-fit: cover;
    border-radius: 10px;
}

#intro, #products
{
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(50, 0, 0, 0.3);
    border-radius: 30px;
    padding: 20px;
    color: #f0e29a;
    box-shadow: 0 4px 30px rgba(50, 0, 0);
    transition: box-shadow 0.3s ease;
}

#intro:hover, #products:hover 
{
    box-shadow: 0 8px 60px rgb(35, 0, 0);
}

#title
{
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

#footer
{
    background-color: #523221;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1) brightness(1);  
}

@media (max-width: 768px) {
    #list 
    {
        font-size: 20px;
    }
}

/* Medium screens (sm) */
@media (min-width: 768px) {
    #list
    {
        font-size: 30px;
    }
}
