/* FONTS */
@font-face {
    font-family: "Minecraft"; 
    src: url("fonts/MinecraftTen.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    -webkit-font-smoothing: none;
}

/* ANIMATIONS */
@keyframes Logo {
	0% {
        padding-top: 0%;
        padding-bottom: 0%;
        opacity: 0;
	}
	100% {
        padding-top: 2%;
        padding-bottom: 2%;
        opacity: 100%;
	}
}

@keyframes Bar {
	0% {
        width: 0%;
        height: 0px;
        transform: skew(0rad);
        opacity: 0;
	}
	100% {
        width: 50%;
        height: 5px;
        transform: skew(-.5rad);
        opacity: 100%;
	}
}

@keyframes Socials {
	0% {
        opacity: 0;
	}
	100% {
        opacity: 100%;
	}
}

/* STYLING */

body {
    margin: 0;
    padding: 0;
    width: auto;
}

html {
	background-color: #000000;
}

/* HEADER */

.backgroundimage {
    display: block;
    z-index: 0;
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height:100%;
}

/* Wowee! button animations! */
.animatedbuttons {
    display: inline-block;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.animatedbuttons:hover {
    transform: scale(1.1);
}

.logogroup {
    position: absolute;
    display: grid;
    place-items: center;
    padding-top: 8%;
    top: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    width: auto;
    height: auto;
    max-height:100%;
}

.logo {
    position: relative;
    z-index: 1;
    max-width: 100%;
    width: 60%;
    height: auto;
    max-height:100%;
    opacity: 0;
    animation: Logo 3s 0.5s;
    animation-fill-mode: forwards;
}

.bar {

    background-color: #ffffff;
    animation: Bar 3s 0.5s;
    animation-fill-mode: forwards;
}

ul {
    margin: 0;
    padding: 0;
    padding-top: 2%;
	z-index: 0;
    
}

ul>li {
    display: inline-block;
}

ul>li>a>img {
    width: 110px;
    opacity: 0;
    animation: Socials 3s 0.5s;
    animation-fill-mode: forwards;
}

/* MAIN */

main {
    display: grid;
    place-items: center;
    background-color: rgb(25, 25, 25);
    background-image: url(assets/stonebg.png);
    background-blend-mode: overlay;
}

.topmain {
    background-image: linear-gradient(rgb(0, 0, 0, 100), rgba(0, 0, 0, 0));
    width: 100%;
    height: 100px;
}

.bottommain {
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgb(0, 0, 0, 100));
    width: 100%;
    height: 100px;
}

main>a {
    padding-bottom: 15px;
    filter: drop-shadow(15px 15px 15px #000000)
}

main>iframe {
    filter: drop-shadow(15px 15px 15px #000000)
}

/* TEXT */

header>h1 {
    position: relative;
    z-index: 3;
    color: rgb(0, 0, 0);
    font-family: "Minecraft";
    font-size: 4rem;
    text-align: center;
    -webkit-text-stroke: 1px #ffffff;
    padding-bottom: 1%;
}

main>h1 {
    position: relative;
    z-index: 3;
    color: rgb(0, 0, 0);
    font-family: "Minecraft";
    font-size: 3rem;
    text-align: center;
    -webkit-text-stroke: 1px #ffffff;
    padding-bottom: 1%;
    filter: drop-shadow(15px 15px 15px #000000)
}

main>h2 {
    position: relative;
    z-index: 3;
    color: rgb(92,100,244);
    font-family: "Minecraft";
    font-size: 3rem;
    text-align: center;
    -webkit-text-stroke: 1px #ffffff;
    padding-bottom: 1%;
    filter: drop-shadow(15px 15px 15px #000000)
}

@media only screen and (max-width: 840px) {
    .backgroundimage {
        margin-left: -50%;
        max-width: 150%;
        width: 150%;
    }
    .logogroup {
        padding-top: 18%;
    }
    ul>li>a>img {
        width: 80px;
    }
    header>h1 {
        font-size: 3rem;
    }
    main>h1 {
        font-size: 2rem;
    }
    main>h2 {
        font-size: 2rem;
    }
}
