html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.boton-hover {
    background-color: transparent;
    color: white;
    transition: all 0.3s ease-in-out;
}

    .boton-hover:hover {
        background-color: white;
        color: black;
        font-weight: bold;
        box-shadow: white 0 0 15px;
        border-radius: 3px;
    }

.boton-hover-scroll {
    background-color: transparent;
    color: white;
    transition: all 0.3s ease-in-out;
}

    .boton-hover-scroll:hover {
        background-color: white;
        color: black;
        font-weight: bold;
        box-shadow: white 0 0 5px;
        border-radius: 3px;
    }

.formulario {
    color: white;
    background: transparent;
    width: 100%;
    outline: none;
    border: none;
    border-bottom: 1px solid white;
    padding: 10px 5px;
    transition: all 0.5s ease-in-out;
}

    .formulario:focus {
        color: white;
        border-bottom: 1px solid #AEF478;
    }

.gradient-background {
    background: linear-gradient(120deg,#4e63f4,#4e63f4,#9a55ff,#9a55ff);
    background-size: 180% 180%;
    animation: gradient-animation 20s ease infinite;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}
