@font-face {
    font-family: 'minecraftia';
    src: url("../Minecraftia-Regular.ttf");
}

body {
    margin: 0;
    font-family: "minecraftia", sans-serif;
    user-select: none;
    overflow: hidden;
}

#background {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("../background.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    justify-content: center;
    align-items: center;
}

#login {
    background: #000D;
    color: white;
    padding: 20px;
    border-radius: 10px;
}

button {
    width: 100%;
    text-align: center;
    background: transparent;
    border: none;
    font-family: "minecraftia";
    color: white;
    font-size: 20px;
    padding-top: 10px;
}

button:hover {
    filter: brightness(80%);
}