/* ================ reset ================ */
* {
    margin: 0;
    padding: 0;
    gap: 0;
    box-sizing: border-box;
    user-select: none;
}


/* ================ global ================ */
h1, h2, h3 {
    color: white;
    font-family: system-ui;
}

li, a, p {
    color: white;
    font-family: system-ui;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}



/* ================ background ================ */
html {
    scroll-behavior: smooth;
    background-color: black;
}



/* ================ header ================ */
header {
    height: 75px;
    background-color: darkblue;
    background: linear-gradient(hsl(240, 100%, 33%), darkblue);

    display: flex;
    justify-content: center;
    align-items: center;
}

header h1 {
    /* text-align: center; */
    margin-top: -10px;
    text-shadow: 0 0 10px hsl(0, 0%, 0%, 50%);
}


/* ================ main ================ */
main {
    margin: auto;
    max-width: 1080px;
    min-height: 100vh;
}



/* ================ header ================ */
footer {
    height: 95px;
    background-color: darkblue;
    background: linear-gradient(hsl(240, 100%, 33%), darkblue);

    display: flex;
    justify-content: center;
    align-items: center;
}

footer h1 {
    /* text-align: center; */
    margin-top: -5px;
    text-shadow: 0 0 10px hsl(0, 0%, 0%, 50%);
}
