@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap");

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Roboto', sans-serif;
    
    background-image: url(../imagenes/museo-de-los-duendes-fondo-historias.jpg);
    width: 100%;
    margin: auto;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 55% center;

}
.main{
    text-align: center;
    margin: 10px;
    padding: 25px 0px 10px 0px ;
}
.main-subtitle{
    font-size: 24px;
    text-align: center;
    font-weight: 500;
    margin-top: 30px;

}
.main-descripcion{
    text-align: justify;
    width: 80%;
    margin: auto;
}
section{
    color: black;
    width: 98%;
    margin: auto;
    position: relative;
}

.section-fondo-backgraund-color{
    border-radius: 15px;
    background-color: rgb(255, 255, 255, 0.6);
    width: 98%;
    margin: auto;
     
    }
article{
    width: 90%;
    margin: auto;
}
.article-texto-fecha{
    width: 100%;
    margin: 30px auto;
}
.article-texto{
    text-align: justify;
}
.article-fecha{
    font-size: 12px;
    text-align: end;
    margin-top: 10px;
}
.section-duende{
    position: absolute;
    right: 0%;
    top: 83%;
    display: none;
}

.section-duende4{
    position: absolute;
    left: 0%;
    top:40%; 
    display: none;

}
.article-section{
    text-align: center;
    width: 98;
    max-width: 900px;
    margin: 30px auto;
  }

/*-----------------600----------------------------------*/
@media (min-width: 600px) {
    main{
        margin-top: 75px;
    }
  article{
    width: 70%;
  }
  .section-fondo-backgraund-color{
    width: 92%;
    margin: 50px auto;
}
  
  }
  /*-----------------900----------------------------------*/
@media (min-width: 900px) {
    .main{
        margin: 70px 0px 0px 0px;
    }
    article{
        width: 100%;
        max-width: 650px;
    }
    
    .section-duende{
        display: block;
    }
    .section-duende4{
        display: block;

    }
  
    }