html,
body {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: altimpact;
    src: url(Oswald-Heavy.ttf);
}

body {
    background-color: #333;
    font-size: 100%;
    text-align: center;
    margin-top: 30px;
    font-family: sans-serif;
    font-size: 16px;
    color: #939393;
}

h1 {
    font-size: 46px;
    font-family: Impact, altimpact;
    color: #222;
    text-align: center;
    text-shadow: 0px 2px 3px #666;
}

h2 {
    font-size: 150%;
    color: red;
    padding-left: 15px;
}

p,
ul,
li,
td {
    color: black;
}

#logo {
    text-align: center;
}

#doortop {
    background-color: #333;
    background-image: url('../img/doordoom.png');
    background-size: cover;
    cursor: pointer;
    width: 800px;
    top: 0px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    height: 800px;
    position: absolute;
    z-index: 1;
    transition: top 1500ms ease;
    -moz-transition: top 1500ms ease;
    -ms-transition: top 1500ms ease;
    -o-transition: top 1500ms ease;
    -webkit-transition: top 1500ms ease;
}

.skull {
    width: 65px;
    cursor: pointer;
}

.onclick {
    cursor: pointer;
}

.logoQ {
    cursor: pointer;
}

#bg {
    width: auto;
    height: auto;
    position: relative;
    margin-top: 10px;
    z-index: 0;
}

a:link {
    color: #999;
    text-decoration: none;
}

a:visited {
    color: #999;
}

a:hover {
    color: #CB222B;
    font-weight: bold;
    font-size: 17px;
}

a:active,
a:focus {
    color: #CE5330;
}


/*Animation*/

.animated-t {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
    }
    50% {
        -webkit-transform: scale(0.8);
    }
    100% {
        -webkit-transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.8);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}


/*menu*/

.bmenu {
    width: 230px;
    padding: 30px 0px;
    margin: 0 auto;
    position: relative;
    -webkit-padding-start: 0px;
}

.bmenu li {
    font-size: 16px;
    display: block;
}

.bmenu li a {
    color: transparent;
    display: block;
    text-transform: uppercase;
    text-shadow: 0px 0px 1px #222;
    letter-spacing: 1px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}


/*.bmenu:hover li a{
	text-shadow: 0px 0px 4px #666;
}*/

.bmenu li a:hover {
    text-decoration: none;
    font-size: 18px;
    color: #666;
    /*text-shadow: 0px 0px 1px 1px #666;*/
    padding-left: 10px;
}


/*	img{
		width: 180px;
}*/


/*media querry*/

@media (max-width: 800px) {
    #doortop {
        width: 600px;
        height: 600px;
    }
}

@media (max-width: 600px) {
    #doortop {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 400px) {
    h1 {
        font-size: 25px!important;
    }
    #doortop {
        width: 300px;
        height: 300px;
    }
    .skull {
        width: 50px;
    }
}

@media (max-width: 300px) {
    h1 {
        font-size: 25px!important;
    }
    .skull {
        width: 35px;

    }
}

@media (max-width: 200px) {
    h1 {
        font-size: 20px!important;
    }
}