body {
    background-color: #000;
    box-sizing: border-box;
    color: #fff;
    font-family: 'Marcellus', serif;
    margin: 0;
}

.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}

.btn:link, .btn:visited {
    background-color: #089bc1;
    border-bottom: 3px solid #089bc1;
    border-radius: 6px;
    color: #fff;
    display: inline-block;
    font-size: 1.25rem;
    padding: 0.5rem 0.75rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn:hover, .btn:active {
    border-bottom: 3px solid #fff;
    color: #fff;
    text-decoration: none;
}

.header {
    margin: 0 auto;
    text-align: center;
}

.header img {
    height: 200px;
    width: 800px;
}

.links {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    text-align: center;
}

.links ul {
    font-size: 1.25rem;
    list-style: none;
    padding: 0;
    text-align: center;
}

.links ul li {
    margin: 0 0 1.5rem;
}

/*=============================================>>>>>
= MEDIA QUERIES =
===============================================>>>>>*/

@media (max-width: 1200px) {

    .header img {
        height: auto;
        width: 720px;
    }
}

@media (max-width: 1024px) {

    .header img {
        height: auto;
        width: 640px;
    }
}

@media (max-width: 768px) {

    .header img {
        height: auto;
        width: 100%;
    }

    .btn:link, .btn:visited {
        font-size: 0.9rem;
    }

    .links ul {
        font-size: 0.9rem;
    }

    .links ul li {
        margin: 0 0 1rem;
    }
}

@media (max-width: 512px) {


}
