@font-face {
    font-family: '';
    src: url('font/Theater_Bold.otf');
    /*URL to font*/
}


:root {
    --border-color: #173943;
    --color-bg: #003a4460;
    --dark-bg: rgba(0, 0, 0, 0.7);
    --light-blue: #2486cc;
    --light-yellow: #f0a63b;
    --dark-yellow: #48320b;

}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-image: linear-gradient(to top, var(--dark-bg), var(--dark-bg)), url("media/identity/mewts_back_image.jpg");
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--light-yellow);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5em;
    text-align: center;
    width: 100%;
}

.block {
    width: 100%;
    padding: 2em 12%;
}

.content-block {
    width: inherit;
    max-width: 1200px;
}

.flex-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-title {
    font-size: 4em;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.grid {
    display: grid;
    grid-template-columns: auto auto auto auto;
}

.grid img {
    width: 100%;
    padding: 8px;
}

.color-bg {
    background-color: var(--color-bg);
}

footer {
    min-height: 4em;
    color: var(--light-yellow);
    padding: 1em;
    font-size: 0.8em;
    text-align: center;
}

header img {
    max-width: 700px;
    width: 40vw;
    height: auto;
    padding-top: 2em;
}

footer img {
    height: 15px;
    width: auto;
}

.text-blue {
    color: var(--light-blue);
}

.presskit {
    font-size: 0.8em;
    margin: 3em 0;
    text-align: left;
}

.presskit h1,
.presskit h2,
.presskit h3 {
    color: var(--light-yellow);

}

.presskit h3 {
    margin-bottom: 0.2em;
    font-weight: normal;
}

.presskit a {
    color: inherit;
}

a {
    color: inherit;
}

#modalPointerRight,
#modalPointerLeft {
    position: absolute;
    background-color: #00000000;
    width: 20%;
    height: 100%;
    padding-top: 23%;
    color: white;
}

#modalPointerLeft:hover {
    background-image: linear-gradient(to right, rgb(0, 0, 0), rgba(0, 0, 0, 0));
}

#modalPointerRight:hover {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgb(0, 0, 0));
}

#modalPointerLeft {
    left: 0;
    cursor: pointer;
}

#modalPointerRight {
    right: 0;  
    cursor: pointer;
}


.disclaimer {
    width: 70%;
    background: #003a44;
    padding: 2em;
    width: 100%;
    font-size: 0.8em;

}

.disclaimer-button-yes,
.disclaimer-button-no {
    margin-top: 1em;
    padding: 0.5em 2em;
    background: #f0a63b !important;
    border-radius: 50px;
    border: none;
    margin: 4px;
}

.small-footer {
    display: none;

}

.big-footer {
    display: block;

}

.socials {
    width: 400px;
    grid-template-columns: auto auto auto auto auto auto auto;
}


.socials a {
    max-width: 128px;
    padding: 4px;
}

.wishlist {
    border-radius: 100px;
    color: #FFA300;
    padding: 16px;
    margin: 8px;
    border: none;
    font-weight: medium;
}

.pc-steam {
    display: flex;
}

.mobile-steam {
    display: none;
    flex-direction: column;
}

.steam-button-svg {
    height: 50px;
    width: auto ;
}

.steam-widget {
    justify-content: center;
}

@media screen and (max-width: 600px) {

    .pc-steam{
        display: none;
    }
    .mobile-steam {
        display: flex;
        flex-direction: column;
    }

    .mobile-steam .steam-icon {
        max-width: 50px;
        padding-right: 5px;
        
    }

    .mobile-steam .flex-row {
        align-items: center;
    justify-content: center;}

    .mobile-steam .flex-row img {
        width: 100%;
    }

    .mobile-steam .socials {
        width: 85%;
        grid-template-columns: auto auto auto auto auto auto auto;
    margin: 0 auto;
    }

    header img {
        max-width: 600px;
        width: 80vw;
    }

    .video {
        width: 100vw;
    }

    .block {
        padding: 2em 6%;

    }

    .grid {
        display: grid;
        grid-template-columns: auto auto;
    }

    .grid img {
        cursor: pointer;
    }

    .modal {
        width: 100%;
    }

    .modal img {
        width: 100% !important;
    }

    footer div {
        margin-top: 6px;
    }

    .small-footer {
        display: block;


    }

    .big-footer {
        display: none;

    }

    .disclaimer {
        padding-bottom: 6em;
    }

    #modalPointerRight,
    #modalPointerLeft {
        display: none;
    }



}

.info {
    line-height: 1.2em;
    color: hsl(205, 100%, 59%);
}