html{
    overflow-x: hidden; 
    line-height: 0;
    width: 100%;
}
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #000;
    width: 100%;
    overflow-x: hidden;    
    
}
body.blurred #main-content {
    filter: blur(5px);
}
li{
    color: #c0bdbd;
}
header {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding:  0;
    width: 100%;
    
}
.h3-header{
    margin: 10%;
    color: #c0bdbd;
}
a {
   text-decoration: none;
}
.hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
    padding: 20px;
    justify-items: center;
}

.hero img {
    width: 70%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    max-width: 100%;
    transition-duration: 1000ms;
    transition-property: opacity;
    height: 400px; /* Puedes ajustar la altura según tus necesidades */
    object-fit: cover; 
}

.courses {
    display: flex;
    flex-direction: column;
    align-items: center;
   
}

.card {
    background-color: #980000;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 2%;
    padding: 20px;
    width: 80%;
    max-width: 100%;
    transition: transform 0.3s;
    clear: both;
}
.card.left {
    float: left;
    margin-right: auto;
}

.card.rigth {
    float: right;
    margin-left: auto;
}
.card:hover {
    transform: scale(1.02);
}


.card h2 {
    margin-top: 0;
    color: #f6f0f0;
}

.card p {
    color: #fffefe;
}


/*sobre el productor*/
.sobre-el-productor {
    text-align: center;
    font-family:  'Montserrat', sans-serif ;
}

.profile-picture img {
    width: 150px;
   height: 150px;
    border-radius: 50%;
    max-width: 350px;
    margin: 20px;
}

.description {
    max-width: 800px;
    margin: 0 ;
}

.description h2 {
    font-size: 4vw;
    margin-bottom: 10px;
    color: white;
}

.description p {
    font-size: 4vw;
    color: #fff;
    line-height: 1.5;
}

/*ADAPTACION PANTALLA COMPLETA*/
@media screen and (min-width: 800px){
    .profile-picture img {
        width: 300px;
       height: 300px;
        border-radius: 50%;
        max-width: 350px;
        margin: 20px;
    }
    
    .description {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .description h2 {
        font-size: 2vw;
        margin-bottom: 10px;
        color: white;
    }
    
    .description p {
        font-size: 2vw;
        color: #fff;
        line-height: 1.5;
    }   
}
/*----------------seccion de instagram y whastapp--------------*/
   
.instagram-whatsapp{
    background-color: #000;
    width: 100%;
    top:-2vw;
  }
  .h1-whatsapp{
    padding-top: 100px;
    font-size: 5vw;
    padding-left: 25%;
    font-family:  'Montserrat', sans-serif ;
    color:#fff;
  }
  .h6-whatsapp{
    padding-top: 2vw;
    font-size: 3vw;
    padding-left: 30%;
    font-family:  'Montserrat', sans-serif ;
    color: #fff;
  }
  .button-whatsapp{
    display: block;
    margin-left: 40%;
    width: 20vw;
    height: 20vw;
    border-radius: 100%;
    margin-bottom: 5vw;
  }
  .img-whatsapp{
   width: 100%;
   height: 100%;
   object-fit: contain; 
  }

  #age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    

    
}

#age-verification-content {
    background: #e60000;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin: 5%;
}

#age-verification h2 {
    margin: 0 0 20px;
}

#confirm-age {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#confirm-age:hover {
    background-color: #555;
}
.h2-age{
    color: #fff;
}