body {
    background-size: cover;
    overflow: hidden;
    width: 100%;
    height: auto;
    animation: fadeInAnimation ease 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@font-face {
    font-family: Montserrat-Light;
    src: url(../fonts/light.otf);
}

@font-face {
    font-family: Montserrat;
    src: url(../fonts/montserrat.otf);
}

@font-face {
    font-family: Montserrat-Bold;
    src: url(../fonts/bold.otf);
}

.mont {
    font-family: "Montserrat", Arial, sans-serif;
}

.mont-light {
    font-family: "Montserrat-Light", Arial, sans-serif;
}

.mont-bold {
    font-family: "Montserrat-Bold", Arial, sans-serif;
}
