body {
    background-color: #000;
    color: #fff;
    font-family: helvetica,arial;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: bottom center;
    background-image: url('/assets/bg/bg4.jpg');
    margin: 0;
    padding: 0;
    min-width: 400px;
}
header {
    float: left;
    text-align: left;
    padding-bottom: 10px;
    /* added by popotte */
    display: flex;
	flex-direction: column;
   
}
header > div > h1, header > div > h2{
    margin: 0;
    padding: 10px;
    text-align: center;
}
header > div > h2{
    font-size: 14px;
    border-bottom-right-radius: 10px;
    position: relative;
    top: -10px;
}
main {
    float: right;
    background-color: rgba(0,0,0,0.5);
    padding: 0 10px 0 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

header > div > h1 {
    left: 30%;
    position: relative;
}

header > div > h1 > img {
    height: 150px;
}

#game-info-warn{
    position: absolute;
    bottom: 10px;
    right: 10px;
}
footer {
    text-align: right;
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 10;
}
footer img {
    max-height: 70px;
}
a, a:hover, a:visited {
    color: #fff;
}
.commandments li {
    color: #cff;
    font-weight: bold;
    text-shadow: #8cf 0px 0px 25px;
    list-style-type: upper-roman;
    font-family: serif;
    font-style: italic;
    font-size: 22px;
    list-style-type: upper-roman;
}
.commandments li sub {
    display: block;
    font-size: 12px;
    font-weight: normal;
    line-height: 12px;
    font-style: normal;
    text-shadow: none;
    font-family: arial;
    color: #ccc;
    padding: 8px 12px 8px 2px;
    position: relative;
    top: -6px;
}
.social {
    position: relative;
    left: 30%;
    padding: 0 10px;
}
.social img:hover {
    animation: rotateShake 500ms;
}
.social img {
    position: relative;
    height: 64px;
}
#vulkan {
    width: 190px;
    position: fixed;
    left: 4px;
    bottom: 10px;
}
#rtx-on {
    cursor: pointer;
    display: inline-block;
    position: fixed;
    width: 210px;
    text-align: center;
    transition: left 500ms, bottom 500ms;
    left: 190px;
    bottom: 10px;
}
#rtx-on.shaking {
    animation: shaking 100ms linear infinite;
}
#rtx-on span {
    position: absolute;
    z-index: 10;
    top: -54px;
    left: 124px;
    font-weight: bold;
    transition: left 200ms;
}
#rtx-on:before, #rtx-on:after {
    content:'';
    position: absolute;
    display: block;
    padding-left: 40px;
    width: 122px;
    height: 44px;
    transform: skew(-15deg);
    background-color: #555;
    left: 20px;
    top: -59px;
}
#rtx-on:after {
    width: 42px;
    height: 46px;
    background-color: #6a0;
    left: 100px;
    top: -60px;
    transition: left 200ms, background-color 200ms;
    box-shadow: #6a0 0 0 8px;
    animation: blinking 1s linear infinite;
}
#rtx-on.off:after {
    background-color: #a22;
    left: 20px;
    box-shadow: none;
}
#rtx-on.off span {
    left: 44px;
    color: #aaa;
}

@media screen and (max-width:680px) {
    .social {
        left: 0;
    }
    header > div > h1 {
        left: 0;
    }
}

@keyframes blinking {
    50% {
        box-shadow: #6a0 0 0 0px;
    }
}
@keyframes shaking {
    25% {
        left: 185px;
    }
    75% {
        left: 195px;
    }
}
@keyframes rotateShake {
    10% {
        transform: rotate(-25deg);
    }
    20% {
        transform: rotate(25deg);
    }
    30% {
        transform: rotate(-15deg);
    }
    40% {
        transform: rotate(15deg);
    }
    50% {
        transform: rotate(-10deg);
    }
    60% {
        transform: rotate(10deg);
    }
    70% {
        transform: rotate(-5deg);
    }
    80% {
        transform: rotate(5deg);
    }
    90% {
        transform: rotate(-2deg);
    }
}

@media screen and (max-width:1220px){
    .commandments{
        display: none;
    }
    #featuresHTML{
        display: none;
    }
}

@media screen and (max-height:900px){
    .commandments{
        display: none;
    }
}

@media screen and (max-height:700px){
    #featuresHTML{
        display: none;
    }
}

@media screen and (max-width:820px){
    footer{
        display: none;
    }
    #game-info-warn{
        left: 50%;
        transform: translateX(-50%);
        width: fit-content;
        white-space: nowrap;
    }
}
