/* PALETA DE COLORES
#68FE9A - Verde
#060606 - Negro
#24272C - Fondo gris oscuro
#FFFF00 - Amarillo
*/

a {
    text-decoration: none;
}

body {
   background-color: #24272C;
   font-size: 1em;
    margin-top: 1%;
    margin-bottom: 7%;
}

section img{
    border-radius: 50%;
    display: block;
    margin: 0 auto;
    width: 10em;
    height: 10em;
}

section img:hover{
    box-shadow: 0 0 5px #8BC34A, 0 0 10px #03A9F4, 0 0 20px #9C27B0, 0 0 30px #E91E63, 0 0 40px #3F51B5;
    transform: translateY(-5px);
}

.iconos{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    width: 0.1em;
    height: 0.1em;
    margin-top: 1.5em;
    margin-bottom: 1em;
}

.iconos i {
    margin: 0 10px;
}

.titulos{
    color: #FFFF00;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
}

.subtitulos{
    color: #FFFF00;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.boton {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5em;
    width: 300px; /*CAMBIAR A TAMAÑO DINÁMICO*/
    height: 15px; /*CAMBIAR A TAMAÑO DINÁMICO*/
    padding: 1em 2em;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 20px;
    background-color: #68FE9A;
    color: black;
    transition: all 0.3s ease-out;
}

.boton:hover {
    box-shadow: 0 0 5px #8BC34A, 0 0 10px #03A9F4, 0 0 20px #9C27B0, 0 0 30px #E91E63, 0 0 40px #3F51B5;
    transform: translateY(-5px);
}

.patapag{
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    position: fixed;
    font-size: 1em;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: lightgray;
    text-align: center;
}

@media only screen and (max-width: 1000px) {
    body {
        margin-bottom: 20%;
    }

    .boton {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 1.5em;
        width: 70%; /*CAMBIAR A TAMAÑO DINÁMICO*/
        height: 15px; /*CAMBIAR A TAMAÑO DINÁMICO*/
        padding: 1em 2em;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        border-radius: 20px;
        background-color: #68FE9A;
        color: black;
        transition: all 0.3s ease-out;
    }

    .patapag{
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        position: fixed;
        font-size: 0.6em;
        left: 0;
        bottom: 0;
        width: 100%;
        background-color: lightgray;
        text-align: center;
    }
 }