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

li {
    list-style: none;
}

a {
    text-decoration: none;
}



/* ================ Global ================ */
h1, h2, h3 {
    font-family: system-ui;
    color: rgb(10, 10, 10);
}

a {
    font-family: system-ui;
}




/* ============================================ */
/* ================ Background ================ */
/* ============================================ */
html {
    scroll-behavior: smooth;
}

/* body {} */



/* ======================================== */
/* ================ Header ================ */
/* ======================================== */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    background: linear-gradient(yellow, gold);
}

header h1 {
    margin-top: -10px;
}



nav {
    overflow: hidden;
    position: sticky;
    top: 0;
    background: rgb(24,24,24);
    box-shadow: rgba(0,0,0,0.10) 0 8px 8px;
}

nav ul {
    display: flex;
    white-space: nowrap;
    align-items: center;
    margin: auto;
    max-width: 1080px;
    height: 25px;
    padding-left: 12px;
}

nav a {
    font-weight: 500;
    color: white;
    margin-right: 15px;
}

nav a:hover {
    color: gold;
}



/* ====================================== */
/* ================ Main ================ */
/* ====================================== */
main {
    margin: auto;
    max-width:    1080px;
    min-height:    100vh;
    padding-top:    30px;
    padding-left:   10px;
    padding-right:  10px;
}


/* ================ Sections ================ */
section {
    overflow: hidden;
    border-top-left-radius:  8px;
    border-top-right-radius: 8px;
    
    min-height: 360px;
    background: rgba(255, 215, 0, 0.25);
    box-shadow: rgba(0,0,0, 0.08) 0 0 15px;
}

section h2 {
    color: rgb(10, 10, 10);
    text-align: center;
    background: linear-gradient(yellow, gold);
}


/* ================ Containers ================ */
section ul {
    padding-top:    10px;
    padding-left:   15px;
    padding-bottom: 15px;
}


/* ================ Content ================ */
section a {
    font-weight: 500;
    color:rgb(10, 10, 10);
}

section a:hover {
    color: darkgoldenrod;
}


/* ======================================== */
/* ================ Footer ================ */
/* ======================================== */
footer {
    box-shadow: rgba(0,0,0,0.25) 0 0 20px;
}

footer div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
    background: linear-gradient(yellow, gold);
}

footer div h1 {
    margin-top: -10px;
}

footer span {
    display: flex;
    justify-content: center;
    height: 22px;
    background-color: black;
}

footer span a {
    font-weight: 500;
    color: white;
}

footer span a:hover {
    color: gold;
}