body {
    background: linear-gradient(-45deg, #398bff, #38bbea, #38e9d5);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
    text-align: center;
    color: #FFFFFF;
    /*font-family: 'OrgonRegular', Arial, sans-serif;*/
    font-family: 'Ubuntu', sans-serif;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.vertical-center {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.middle-text {
    margin: 50px 0;
}

@font-face {
    font-family: "OrgonRegular";
    src: url("./fonts/Orgon-Regular.otf") format("opentype");
}

a {
    color: #FFFFFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline !important;
}

hr {
    border: none;
    /* Rimuove qualsiasi bordo di default */
    height: 1px;
    /* Spessore della linea */
    background-color: white;
    /* Colore della linea */
    width: 100%;
    /* Larghezza della linea, puoi adattarla come preferisci */
    margin: 60px 0;
    /* Spazio sopra e sotto la linea */
}

#logo-image {
    background-image: url('../images/logo.svg');
    width: 500px;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media screen and (max-width: 767px) {
    #logo-image {
        width: 300px;
        background-image: url('../images/logo_vertical.svg');
    }
}