@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Crimson+Pro:wght@400;700&display=swap');

/* 1. Reset & Safety */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: #23272e;
    color: #e0e0e0;
    font-family: 'Crimson Pro', serif;
    /* Default for all text */
    overflow-x: hidden;
}

/* 2. Global Title & Nav Font */
h1,
h2,
h3,
nav,
.audiowide {
    font-family: 'Audiowide', cursive;
    text-transform: uppercase;
}

/* 3. The Content Box (Mobile First) */
main {
    width: 100%;
    padding: 20px;
    /* This keeps your "Dissident" title from touching the screen edge */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* 4. Centers the actual words inside the tags */
    min-height: 100vh
        /* Centers your content for a clean mobile look */
}