@font-face {
    font-family: "Roboto";
    src: url("./Roboto/Roboto-Regular.ttf");
}

@font-face {
    font-family: "Narrow";
    src: url("./PT_Sans_Narrow/PTSansNarrow-Regular.ttf");
}

@font-face {
    font-family: "Icons";
    src: url("./Icons/MaterialIcons-Regular.ttf");
}

#mybody {
    background-color: #3a2e39;
    color: white;
    font-family: "Narrow";
    overflow: hidden;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}