@font-face {
    font-family: "Lato-Light";
    src: url("src/fonts/Lato-Light.ttf");
}

body {
    background-color: #202737;
    margin: 0;
    height: 100%;
    width: 100%;
    overflow: hidden !important;
    font-family: din-2014, Lato, sans-serif;
    font-size: 14px;
}

.header {
    padding: 40px;
}
.order-atomic-wrapper {
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: hidden;
    position: relative;
}

.logo {
    height: 50px;
}
.text-wrapper {
    padding-top: 5%;
    padding-left: 20px;
    padding-right: 20px;
}

.watermark-wrapper {
    overflow: hidden;
}

.watermark {
    position: absolute;
    top: -25%;
    height: 175%;
    left: 0%;
    animation: logo-spin infinite 60s linear;
}

.blue-stripe {
    width: 100%;
    height: 10px;
    background-image: linear-gradient(to left bottom, #009DCA, #0061AD);
}

.top {
    position: fixed;
    top: 0;
}

.bottom {
    position: fixed;
    bottom: 0;
    padding: 10px;
    height: unset;
    text-align: center;
    color: white;
}

h1 {
    color: white;
    text-align: center;
    font-weight: 300;
    font-size: 7rem;
    position: relative;
    text-transform: uppercase;
}

h1 > span {
    font-weight: 700;
    font-style: italic;
    color: #009DCA;
}

@keyframes logo-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1200px) {
    h1 {
        font-size: 5rem;
    }
    .watermark {
        left: -5%;
    }
}

@media (max-width: 1000px) {
    .watermark {
        left: -40%;
    }
}

@media (max-width: 800px) {
    .watermark {
        left: -70%;
    }

    .header {
        padding-left: 20px;
    }
}

@media (max-width: 400px) {
    h1 {
        font-size: 4rem;
    }
}