@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-01.jpg);
    width: 100%;
    margin: auto;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 55% center;
}
.section-fondo-backgraund-color{
    border-radius: 15px;
    background-color: rgb(255, 255, 255, 0.6);
    width: 98%;
    margin: auto;
    margin-top: -50px;
     
    }

main{
    text-align: justify;
    width: 98%;
    max-width: 700px;
    margin: 65px auto 45px;
}
.main-title{

    text-align: center;
    font-size: 28px;
    padding-top: 90px;
}
main p{
    border-radius: 15px;
    background-color: rgb(255, 255, 255, 0.8);
    padding: 15px;
}
section{
    width: 98%;
    margin: auto;
}
.section-header{
    font-size: 24px;
    text-align: center;
    margin-bottom: 15px;
}
.section-article-content{
    width: 98%;
    max-width: 600px;
    margin: auto;
}
.actividad-video{
    width: 100%;
}
.video1-box{
    width: 100%;
}
iframe{
    width: 100%;
    box-shadow: 4px 4px 4px black;
}

article{
    width: 98%;
    margin: 20px auto;
}
.article-footer{
    text-align: center;
    margin-top: 30px;
}
.article-section{
    text-align: center;
    width: 98;
    max-width: 900px;
    margin: 30px auto;
}
.museo-reservacion{
    width: 100%;
    max-width: 250px;
    margin: 15px  auto;
   
}
.museo-reservacion p{
    text-align: center;
    letter-spacing: 5px;
}
.museo-reservacion a{
    background-color: whitesmoke;
    border-radius: 4px;

    color: black;
    text-decoration: none;
    width: 100%;
    margin: auto;
    padding: 3px;
    display: flex;
    justify-content: space-around;
    box-shadow: 2px 2px 2px black;
    transition: 500ms;
}
.museo-reservacion a:hover{
    transform: scale(1.1);
}

.museo-reservacion a img{
    width: 15%;
}


/*-----------------600----------------------------------*/
@media (min-width: 600px) {
    .section-fondo-backgraund-color{
        width: 90%;
        margin-top: 50px;
    }
    .main-title{
        padding-top: 20px;
    }
    }