/* ================ Reset ================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

li {
    list-style: none;
}

/* h1, h2, h3, p { 
    cursor: default;
} */

a {
    cursor: pointer;
    text-decoration: none;
}



/* ================ Global ================ */
h1, h2, h3, p, li, a {
    color: rgba(18,18,18);
    
    font-family: "Segoe UI";
    /* font-family: system-ui; */
    /* font-family: Calibri; */
    /* font-family: Cambria; */
    /* font-family: Candara; */
}

a:hover {
    color: darkgoldenrod;
}




/* ============================================ */
/* ================ Background ================ */
/* ============================================ */
/* html {} */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}




/* ======================================== */
/* ================ Header ================ */
/* ======================================== */
header {
    background: linear-gradient(yellow, gold);
    box-shadow: rgba(0,0,0, 0.20) 0 0 15px;
}

header div {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 75px;
}

header h1 {
    margin-top: -12px;
}



/* ================ Header > Navbar ================ */
nav {
    display: flex;
    align-items: center;
    
    background: rgb(48,48,48);
    min-height: 25px;
}

nav ul {
    display: flex;

    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}

nav li, nav a {
    color: white;
    font-weight:    500;
    margin-left:    5px;
    margin-right:   3px;
}

nav a:hover {
    color: gold;
}



/* ====================================== */
/* ================ Main ================ */
/* ====================================== */
main {
    flex: 1;
    margin: 0 auto;
    
    width: 1080px;
    padding-left:   10px;
    padding-right:  10px;
}



/* ================ Sections ================ */
section {
    min-height: 350px;
    background: rgba(255,255,0, 0.15);
    box-shadow: rgba(0,0,0, 0.05) 0 0 15px;

    margin-top:                 40px;
    border-top-left-radius:     10px;
    border-top-right-radius:    10px;

}

section h1, section h2 {
    text-align: center;
    background: linear-gradient(yellow, rgb(255, 228, 73));
    border-top-left-radius:     10px;
    border-top-right-radius:    10px;
}




/* ================ Containers ================ */
section div {
    padding-top:    10px;
    padding-bottom: 10px;
    padding-left:   15px;
    padding-right:  15px;
}



/* ================ Content ================ */
section a {
    font-weight: 500;
}




/* ======================================== */
/* ================ Footer ================ */
/* ======================================== */
footer {
    box-shadow: rgba(0,0,0, 0.20) 0 0 15px;
}

footer div {
    display: flex;
    justify-content: center;
    align-items: center;
    
    min-height: 90px;
    background: linear-gradient(yellow, gold);
}

footer h1 {
    margin-top: -12px;
}



footer span {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    
    min-height: 24px;
    background: black;
}

footer span p {
    color: white;
    font-weight: 500;
}

footer span a:hover p {
    color: gold;
}