html {
    width: 100%;
    height: 100%;
}

body {    
    text-shadow: 3px 3px #000000;
    
    color: #ffffff;
    background-color: #000000;

    background-repeat: repeat;
}


/* ---------------------------
  Flexbox layout
--------------------------- */
.contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-width: 100%;
    height: auto;
    padding-left: 0px;
    padding-right: 0px;

    text-align: left;

    z-index: 35;
    position: relative;
}

.logosection, .gamesection, .aboutsection, .follow {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gamesection {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 20px;
}

.gamesection .right-img {
    order: 1;
    width: 50%;

    margin-left: 2.5vw;
}

.gamesection .left-img {
    order: -1;
    width: 50%;

    margin-right: 2.5vw;
}

.gamesection .header-text,
.gamesection .body-text {
    
}

@media (max-width: 1024px) {
    .gamesection {
        flex-direction: column;
    }

    .gamesection .game-img,
    .gamesection .body-text {
        flex: none;
        width: 100%;
        padding: 0;
    }

    .gamesection .right-img {
        order: -1;
        width: 66%;

        margin-left: 0;
    }

    .gamesection .left-img {
        order: -1;
        width: 66%;

        margin-right: 0;
    }

    .gamesection .icons {
        text-align: center;
    }

    .header-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .gamesection .header-text,
    .gamesection .body-text {
        padding-left: 0px;
    }
}

.gamesection .game-img,
.gamesection .body-text {
    flex: 1;
}



/* ---------------------------
  Images
--------------------------- */
.logo   {   
    width: 90%;
    height: auto;
    
    text-align: center;
    margin: 0 auto;

    padding: 0px;
    margin-bottom: 7.5%;
}

#logo-img {
    filter: drop-shadow(0 0 2rem rgb(255, 0, 0));
}

img.bordered {
    border-style: solid;
    border-width: 5px;
    border-color: #0000ff;
}


/* ---------------------------
  Links
--------------------------- */
a {
    color: #ff8800;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;

    font-weight: bold;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #ffff00;
}




/* ---------------------------
  Clean up later
--------------------------- */
.header-text {
    font-size: clamp(40px, 5vw, 60px);;
    font-family: "Bebas Neue", sans-serif;
    margin-bottom: 32px;

    color: #ff0000;
}

.body-text {
    font-size: clamp(20px, 2vw, 28px);;

    font-family: "Quicksand", sans-serif;
}






.background {
    position: fixed;
    min-height: 100%; 
    opacity: 100%;

    background: url(../img/tsq.jpg) no-repeat center center; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;

    min-width: 100%;
    padding: 0px;
}

.section {
    padding-top: 75px;
    padding-bottom: 2.5%;
    padding-left: 17.5%;
    padding-right: 17.5%;

    margin-left: 0px;
    margin-right: 0px;

    min-width: 100%;
}

@media (max-width: 1500px) {
    .section {
        padding-left: 10%;
        padding-right: 10%;
    }
}

@media (max-width: 1200px) {
    .section {
        padding-left: 5%;
        padding-right: 5%;
    }
}




.logosection {
    background: #180000;
    background: rgba(24, 0, 0, 0.3333);
}

.gamesection {
    padding-top: 50px;

    background: #400000;
    background: rgba(32, 0, 0, 0.75);

    color: #ffffff;
    text-shadow: none;
}

.aboutsection {
    padding-top: 50px;

    background: #180000;
    background: rgba(16, 32, 0, 0.5);
}

.game-img {
    margin-bottom: 32px;
}

::-moz-selection {
    text-shadow: none;

    background: #0000fc;
    background: rgba(0, 127, 255, 0.4);
}

::selection {
    text-shadow: none;

    background: #0000fc;
    background: rgba(0, 127, 255, 0.4);
}

img::selection {
    background: 0 0;
}

img::-moz-selection {
    background: 0 0;
}

img.icon:hover { filter: brightness(50%); }

body {
    webkit-tap-highlight-color: rgba(255,255,255,.4);
}






.copyright {
    display: flex;
    flex-direction: row;
    align-items: center; /* Centers children vertically in the row */
    justify-content: center; /* Centers children horizontally in the row */

    margin-top: 32px;
    font-size: 18px;
    font-family: "Bebas Neue", sans-serif;
}



/* === Divider lines === */
hr {
    width: 90%;

    border-color: rgba(255, 0, 0);
    background-color: rgba(255, 0, 0);
    color: rgba(255, 0, 0);

    box-shadow: 0 0 10px 5px rgba(255, 0, 0, 0.5);
}
