@font-face {
    font-family: "minecraftia";
    src: url("./media/minecraftia.woff") format("woff"), url("./media/minecraftia.ttf") format("truetype");
}
html {
    background-color: black;
}
* {
    cursor: url(./media/cursor.png), auto !important;
    font-family: "Minecraftia", sans-serif !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    margin: 0%;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
p {
    margin-bottom: 1.6rem;
    font-size: 18px;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.5);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}
.motd {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3.6rem;
    width: 100%;
    position: relative;
}
.icon {
    margin: 0rem;
    font-size: 80px;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.5);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}
.buttons {
    display: flex;
    justify-content: center;
}
svg path {
    fill: rgba(255, 255, 255, 0.8);
}
svg {
    width: 2rem;
    height: auto;
}
.socials {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    transition: transform 0.2s;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    display: inline-block;
}
.socials:hover {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
    transform: scale(1.1);
}
button {
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.5);
    background-color: rgba(0, 0, 0, 0.25);
    transition: transform 0.2s;
    color: white;
    display: block;
    width: 18rem;
    height: 3rem;
    margin: 1rem;
    border: 0.5px solid rgba(255, 255, 255, 0.0125);
    border-radius: 15px;
}
button:hover {
    transform: scale(1.1);
}
video {
    object-fit: contain;
    overflow: clip;
}
.background {
    bottom: 0;
    height: 100vh;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    position: fixed;
    right: 0;
    top: 0;
    width: 100vw;
    z-index: -1;
}
.grid {
    background: transparent url(./media/dot.png) repeat 0 0;
    height: 100%;
    opacity: 1;
    position: fixed;
    width: 100%;
    z-index: -1;
}
.main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 1);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}
#typewriter-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.5);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid rgba(255, 255, 255, 0.8);
    animation: blink-caret 0.8s step-end infinite;
}
@keyframes blink-caret {
    50% {
        border-color: transparent;
   }
}
