@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Roboto", sans-serif;
}

header{
    position: sticky;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

#home{
    background-image: url('../img/sfondo.jpg');
    background-size: cover;
    height: 80vh;
}

.my-bg-primary{
    background-color: #BDE;
}

.my-bg-transparent{
    background-color: rgba(255, 255, 255, 0.7);
}

.carousel-item img {
    width: 100%;       
    height: 100%;      
    object-fit: cover; 
}

.carousel-inner {
    width: 400px;
    margin: 0 auto;
}

@media (max-width: 576px) {
    .carousel-inner {
        width: 100%;
        height: auto;  
    }

    .carousel-item img {
        width: 100%;   
        height: auto;  
        object-fit: contain;  
    }
    
    .my-bg-transparent{
        background: none;
        
    }
  }
