/* style.css */
@import url('https://fonts.cdnfonts.com/css/minecraftia');

* {
    font-family: 'Minecraftia', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    color: white;
    text-align: center;
    background: url("https://mc.cuakercraft.com.ar/assets/media/images/fondo.webp") no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

button {
    padding: 1rem 1rem;
    font-family: inherit;
    font-size: 30px;
    background: #000;
    border: 4px solid #A0A0A0;
    height: 1.8em;
    color: #fff;
    width: 34%;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    padding-bottom: 2.2em;
    padding-top: 0.48em;
}

button:focus {
    border: 4px solid #fff
}

.hidden {
    display: none;
}

#msg {
    margin-top: 1rem;
    color: #00ff88;
    font-size: 0.9rem;
}