@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&family=Merriweather+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

/* VARIABLES PARA LETRAS */
:root{
    --letraDMSans: 'DM Sans', sans-serif;
    --letraMerriweather: 'Merriweather Sans', sans-serif;
}


/* MINI NORMALIZACIÓN */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: var(--letraMerriweather);
    font-weight: bold;
}

/* /////////////////////////////////////////////////////////////////////////////////// */
/* ESTILOSO PARA EL HEADER */
.header{
    padding: 30px;
    background-color: rgba(57, 160, 219, 0.692);
    color: azure;
    text-align: center;
}

/* /////////////////////////////////////////////////////////////////////////////////// */
/* ESTILOSO EL CONTENEDOR MAIN Y EL GRID */
.principal{
    padding: 40px;
    background-color: rgba(180, 226, 253, 0.692);
    text-align: center;
}

.gridImg{
    display: grid;
    width: 600px;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 2px;
    margin: auto;
    margin-bottom: 40px;
}

hr{
    border: 0.4px rgb(255, 255, 255) solid;
}
.img{
    width: 100%;
    height: 100%;
    cursor: move;
}


.img img{
    width: 100%;
    height: 100%;
}

.boton{
    padding: 15px 30px;
    background: none;
    color: rgba(57, 160, 219, 0.692);
    margin-top: 20px;
    cursor: pointer;
    border: none;
    border-radius: 20px;
    border: solid 2px;
    transition: background, color, 0.3s ease-in-out;
}
.boton:hover{
    background-color: rgba(57, 160, 219, 0.692);
    color: rgba(180, 226, 253, 0.692);
}
/* /////////////////////////////////////////////////////////////////////////////////// */
/* ESTILOS PARA EL SORTABLE */

/* ESTILOS PARA EL ELEMENTO AL CUAL SE INTERCAMBIARÁ, EL DESTINATARIO */
.intercambiar{
    border: 3px solid red;
}

/* CLASE PARA CUANDO EL ELEMENTO EN EL SORTABLE ESTÉ SELECCIONADO */
.seleccionado{
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

/* /////////////////////////////////////////////////////////////////////////////////// */
/* ESTILOS PARA EL FOOTER */

.footer{
    padding: 10px;
}

.footer h3{
    font-weight: 300;
}


.texto-rojo{
    color: brown;
    font-weight: bold;
}