@font-face {
    font-family: "Nunito";
    src: url(../assets/fonts/Nunito-Regular.ttf) format('truetype');
}

@font-face {
    font-family: "Nunito Italic";
    src: url(../assets/fonts/Nunito-Italic.ttf) format("truetype");
}

@font-face {
    font-family: "Nunito Bold";
    src: url(../assets/fonts/Nunito-Bold.ttf) format("truetype");
}

@font-face {
    font-family: "Nunito Light";
    src: url(../assets/fonts/Nunito-Light.ttf) format('truetype');
}

@font-face {
    font-family: "FS Maja Web";
    src: url(../assets/fonts/FSMajaWeb-Regular.woff2) format("truetype");
}

#gof_logo_loading {
    position: absolute;
    inset: 0;
    animation-name: pulsating;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    margin: auto;
    height: 9vmin
}

@keyframes pulsating {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes make-transparent {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}


@keyframes make-opaque {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
