@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    font-family: 'VT323', monospace;
    color: white;
    background-color: rgb(68, 68, 68);
}

a, h1, p {
    margin: 0;
    padding: 0;
    text-align: center;
    color: inherit;
}


h1{
    font-size: 2.25rem; 
    line-height: 2.5rem; 
    letter-spacing: 0.1rem;
}

p {
    font-size: 1.5rem; 
    line-height: 2rem;
    letter-spacing: 0.1rem;
}

#boxes {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 1.5rem;
}

label {
    font-size: 1.25rem; 
    line-height: 1.75rem;
    letter-spacing: 0.1rem;
}

footer {
    text-align: center;
}