@font-face {
    font-family: 'NationalBold';
    src: url("../fonts/NationalWeb-Bold.eot");
    src: url("../fonts/NationalWeb-Bold.woff2") format("woff2"), url("../fonts/NationalWeb-Bold.woff") format("woff");
    font-display: swap;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'NationalBold';
    background-color: #164064;
    color: white;
}

#content h1 {
    text-align: center;
}

.reveal {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: 2s all ease;
}

.reveal.active {
    transform: translateY(0);
    opacity: 1;
}

#Info {
    color: white;
    text-align: center;
    padding: 40px;
}

.mobile {
    display: none;
}

@media only screen and (max-width: 850px), only screen and (max-device-width: 850px) {
    .mobile {
        display: block;
    }

    .non-mobile {
        display: none;
    }
}