/* Style Settings */

/* Importar la fuente Product Sans */
@import url('https://fonts.googleapis.com/css?family=Product+Sans:400,700&display=swap');

:root {
    --font: 'Product Sans', sans-serif;
}

/* Fondo con animación de gradiente */
body {
    background: linear-gradient(30deg, rgb(1, 127, 127), rgb(1, 110, 110), rgb(13, 41, 41), rgb(76, 139, 139));
    background-size: 450% 450%;
    animation: gradient 10s ease infinite;
}

/* Animación del gradiente */
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Colores del tema */
.theme-light {
    --color-main: #fff;
    --color-text: #fff;
}

/* Estilo de la imagen de perfil */
#Photo {
    width: 100px;
    height: 100px;
    display: block;
    margin: 8px auto 13px;
    border-radius: 25%;
}

/* Nombre */
#ES {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    display: block;
    font-family: var(--font);
    width: 100%;
    text-align: center;
}

#EN {
    color: #fff;
    font-size: 15px;
    display: block;
    font-style: italic;
    font-family: var(--font);
    width: 100%;
    text-align: center;
}

/* Título */
#title {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
    display: block;
    font-family: var(--font);
    width: 100%;
    margin-top: 50px;
    text-align: center;
    text-decoration: none;
}

/* Contenedor de los enlaces */
#linksbutton {
    max-width: 580px;
    width: auto;
    display: block;
    margin: 27px auto;
}

/* Botones de enlaces */
.links {
    display: block;
    background-color: rgba(255, 255, 255, 0);
    color: var(--color-text);
    font-family: var(--font);
    text-align: center;
    margin-bottom: 8px;
    padding: 17px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99);
    border: solid var(--color-main) 2px;
    border-radius: 15px;
}

/* Efecto hover en los enlaces */
.links:hover {
    background-color: #fff;
    color: #000;
    border: solid var(--color-main) 2px;
}

/* Contenedor de los engranajes */
.gears {
    width: auto;
    text-align: center;
    margin: 10px auto;
}

/* Estilos de los engranajes */
.gear {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0);
    color: var(--color-text);
    font-family: var(--font);
    text-align: center;
    margin-bottom: 10px;
    padding: 12px;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    transition: all 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99);
    border: solid var(--color-main) 2px;
    border-radius: 10px;
}

/* Efecto hover en engranajes */
.gear:hover {
    background-color: #fff;
    color: #000;
    border: solid var(--color-main) 2px;
}

/* Pie de página */
.footervalue {
    text-align: center;
    font-size: 1.3rem;
    margin-top: 10px;
}

/* Enlaces del pie de página */
.footervalue a {
    text-decoration: none;
}

/* Texto del pie de página */
#footertext {
    color: var(--color-main);
    font-size: 12px;
    font-weight: 300;
    line-height: 1.25;
    display: block;
    font-family: var(--font);
    width: 100%;
    margin-top: 20px;
    text-align: center;
    text-decoration: none;
}
