* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #0E1D14;
    background-image: url("/CDN/background_image.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #fff;
}

.background {
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #14141293;
    width: 100vw;
    height: 100vh;

}

.box {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

.box .welcome {
    /* padding-right: 150px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.box .welcome h1 {
    color: #cc3232;
    text-transform: uppercase;
}

.box .welcome p {
    color: #ff8383;
    font-weight: bold;
}

.box .welcome a {
    color: #fd3535;
    text-decoration: none;
}

.box .welcome .icon {
    width: 200px;
    margin-right: 25px;
}

.box .welcome .icon-large {
    width: 300px;
}

footer {
    position: fixed;
    bottom: 15px;
    color: #666;
}

footer a {
    text-decoration: none;
    color: #0036a3;
}

/* Phones */
@media (max-width: 768px) {

    .box .welcome {
        padding: 10px; 
        flex-direction: column;
        text-align: center;
    }

    .box .welcome .icon {
        margin-right: -10px;
        margin-bottom: 15px;
    }

    footer p {
        font-size: 12px;
    }
}

/* Small screens */
@media (max-width: 1024px) {

    .box .welcome {
        padding: 10px;
        /* padding-right: 50px; */
    }

    .flame {
        width: 100vw;
    }

}