* {
    margin: 0;
    padding: 0;
}

html {
    background-color: #000;
	overflow: hidden;
}

body {
    overflow: hidden;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(/overlay.png);
    background-repeat: repeat;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.5);
}

.fullscreen {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: hidden;
	z-index: -100;
}

video {
    position: absolute;
	min-height: 100%;
    min-width: 100%;
}

.fab {
    color: #fff;
    font-size: 4em;
    padding: 30px 10px 0 10px;
    transition: 100ms;
}

.fab:hover {
    transform: translate(0, 5px);
}

.fa-discord {
    position: relative;
    top: 3px;
}

.logo {
    position: relative;
    top: 0%;
    left: 0%;
    transform: translate(0%, 0%);
    margin-bottom: 30px;
    max-width: 80%;
}

img:hover {
    filter: drop-shadow(0 0 50px #274bbc);
}

footer {
    position: relative;
}

li {
    display: inline;
}

.wrapper {
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 1167px;
    opacity: 0;
}

.candy {
    display: none;
    position: relative;
    padding-top: 56.25%;
    text-align: center;
    max-height: 656px;
    opacity: 0;
}

#container {
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }

iframe {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 1458px) {
    .wrapper {
        max-width: 100vw;
		width: 80vw;
    }
}

@media only screen and (max-width: 460px) {
    .wrapper {
		width: 100vw;
    }
	.logo {
		max-width: 70%;
	}
}

@media only screen and (max-width: 376px) {
    .fab {
        font-size: 3em;
        padding: 30px 10px 0 10px;
    }

}