@font-face {
  font-family: 'Fuente';
  src: url(../fonts/Minecraftia-Regular.ttf) format('truetype');
  font-weight: normal;
  font-style: normal;
  font-size: larger;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;  /* ¡La clave! */
}
body{
    background-image: url(../img/fondo.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0px;
    margin: 0px;
}
.body-carrusel{
    background-color: #D9D9D9;
    background-image: none;
    padding: 10px;
}
.titulopng{
    width: 40%;
    height: 40%;
}
.contenedor{
    background-color: #D9D9D9;
    width:auto;
    /*height: 100vh !important;*/
    height: max-content;
    margin: 0px;
    padding: 40px;
}
table{
    width: 100%;
}
.carrusel{
    display: flex;
    justify-content:flex-start;
    gap: 20px;
}
.imgcarrusel{
    width: 140px;
    height: 100px;
    border: 2px solid black ;
    border-radius: 2px;
    transition: 0.5s;
}
.imgcarrusel:hover{
    transform: scale(1.1);
    transition: 0.5s;
    cursor: pointer;
}
.img-movimiento2{
    width: 50%;
    height: 50%;
    border-radius: 2px;
}
.img-movimiento1{
    display: none;
}
.td-img{
    display: flex;
    align-items: start;
    justify-content: start;
}
.ful-img{
    width: 100%;
    height: 100vh !important;
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
}
#fulImg{
    width: 550px;
    height: 400px;
}
#divfulImg{
    display: none;
}
#divfulVideo{
    display: none;
}
.ful-img span{
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 40px;
    font-family: 'Fuente';
    cursor: pointer;
    color: white;
}
footer{
    background-color: #D9D9D9;
    height: 100px;
}
a{
    font-family: 'Fuente';
    color: #5170ff;
}
a:hover{
    color: #770893;
}
p{
    font-family: 'Fuente';
}
.ptitulo{
    color: red;
    font-size: 30px;
    margin: 0px;
}

@media (max-width: 550px) {
    .img-movimiento2{
        display: none;
    }
    .img-movimiento1{
        display: block;
        width: 100%;
    }
    #fulImg{
        width: 100%;
        height: auto;
    }
    #divfulVideo{
        width: 100%;
        height: auto;
    }
    #fulVideo{
        width: 100%;
        height: auto;
    }
}