

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


html {
    /*background-color: #18191C;*/
    font-family: AltGoth, "Museo Sans", sans-serif;
    color:  #000;
}

@font-face {
    font-family: "Museo Sans";
}


h2{
    font-weight: 200;
    font-size: 14px;
    margin-bottom: -5px;
}

h1 {
    font-weight: 500;
    font-size: 32px;
    margin-bottom: 25px;
    text-transform: uppercase;
}
a {
    color: #4A4A4A;
}

.text {
    text-align: center;
}

.logo {
    margin: 0 auto;
    width: 80px;
    height: 80px;
    padding-top: 20px;
}

.logo img{
    width: 100%;
}

body {
    height: 100vh;
    position: relative;
    margin: 0;
}

footer {
    position: absolute;
    bottom:0;
    height: 100px;
    width:100%;
    background-color: #4A4A4A;
}

footer img {
    position: absolute;
    bottom:0;
    max-height: calc(100vh - 320px);
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 200px;
    animation: 2s ease-out 0s 1 slideInFromBottom;
}


@keyframes slideInFromBottom {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0);
    }
}


@media screen and (min-width: 600px) {
    footer {
        height: 200px;
    }

    footer img {
        max-width: 1000px;
    }


    h2{
        font-weight: 200;
        font-size: 16px;
    }

    h1 {
        font-weight: 500;
        font-size: 64px;
    }
}