@font-face {
    font-family: "minecraft";
    src: url(../fonts/Minecraft.ttf);
}
@font-face {
    font-family: "minecraftia";
    src: url(../fonts/Minecraftia.ttf); 
}
@font-face {
    font-family: "minecrafted";
    src: url(../fonts/3_Minecraft-Bold.otf); 
}
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;

    font-family: 'Open Sans';font-size: 22px;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

#background {
    width: 100vw;
    height: 100vh;
    object-fit: fill;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    -o-filter: blur(10px);
    filter: blur(10px);
    transform: scale(1.06);

}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    animation-name: appearingText;
    animation-duration: 4s;
}
@keyframes appearingText {
    from {opacity: 0%;}
    to {opacity: 100%;}
}
.content h1 {
    margin: 15px;
    font-size: 100px;
    color: rgb(255, 145, 0);
    font-family: "minecrafted";
}


.content p {
    margin: 0;
    color: white;
}
/*
.content button {
    margin: 30px;
    border-radius: 15px;
}*/


#notification {
    position: fixed;
    top: 0;
    left: 0;
    background-image: url("../images/notification/notif.png");
    background-size: 100%;
    color: #fff;
    padding: 20px;
    font-size: 18px;
    display: none;
}


.minecraft-button {
    position: relative;
    display: inline-block;
    margin: 20px;
    padding: 0 30px;
    height: 40px;
    line-height: 40px;
    border: none;
    background-image: url("../images/slider/static.png");
    background-size: 100%;
    color: #e3e3e3;
    font-family: "minecrafted";
    text-shadow: 3px 3px rgb(70, 70, 70);
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;

}


.minecraft-button:hover {
    background-image: url("../images/slider/hover.png");
    background-size: 100%;
    color: #fff;
}

.minecraft-button:focus {
    outline: none;
}

.minecraft-button:active {
    background-image: url("../images/slider/clicked.png");
    background-size: 100%;
    color: #fff;
}



#toggle {
    position: absolute;
    scale: 50px;
    top: 20px;
    right: 20px;
    z-index: 999;
    cursor: pointer;
    width: 50px;
    height: 50px;
}