/* --- CONFIGURAÇÕES GERAIS --- */
body {
    background-image: url('backgroundPrincipal.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    margin: 0;
    min-height: 100vh;
    
    /* O body vira o container flex principal */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

/* --- TÍTULO FLUIDO --- */
h1 {
    font-family: 'Courier New', Courier, monospace;
    color: rgb(255, 255, 255);
    
    /* CLAMP: Tamanho mínimo (1.8rem), ideal (4vw) e máximo (3.5rem) */
    font-size: clamp(1.8rem, 4vw + 1rem, 3.5rem);
    
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 20vh; /* Altura mínima flexível */
    margin: 0;
    text-align: center;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

/* --- LINKS FLUIDOS --- */
a {
    font-family: 'Courier New', Courier, monospace;
    color: rgb(255, 255, 255);
    
    /* CLAMP: Diminui no celular e aumenta no computador sozinho */
    font-size: clamp(1.2rem, 3vw + 0.5rem, 2.5rem);
    
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 8vh;
    text-decoration: none;
    text-align: center;
    width: 100%;
}

li {
    color: rgb(104, 248, 111);
    width: 100%;
}
