/*-------------------- General Document Styling --------------------*/

html {
    background-image: linear-gradient(160deg, #333333, #111111);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    font-family: 'Video Thin', monospace;
}

body {
    margin: 0;
    padding: 0;
    color: #ffffff;
    font-family: 'Video Thin', monospace;
    letter-spacing: 0.05em;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1 {
    color: #000000;
    font-size: 250%;
    margin:0;
    display: inline-block;
    text-decoration: none;
    padding-left: 50px;
}

h2 {
    color: #ffffff;
    font-size: 125%;
    margin: 10px;
    display: inline-block;
    text-decoration: none;
    letter-spacing: 0.05em;
}

h3 {
    color: #ffffff;
    font-size: 3em;    
    margin: 10px auto;
    text-decoration: none;
    letter-spacing: 0.05em;
    padding-top: 50px;
}


/*-------------------- Main Heading Bar --------------------*/

header {
    width: 100%;
    padding: 10px 0;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background-image: linear-gradient(160deg, #ffffff, #000000);
    letter-spacing: -0.05em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 25px
}


/*----- Header Nav Buttons -----*/

header h1 a:link, h1 a:visited {
    color: #000000;
    font-size: 125%;
    text-decoration: none;
}

header h1 a:hover, h1 a:active {
    color: #000000;
    text-decoration: none;
}

header h2:first-of-type {
    margin-left: auto;
}

header h2:nth-child(2) a:link {
    margin-left: auto;
    background-image: linear-gradient(160deg, #ff00aa, #000000);
}

header h2:nth-child(3) a:link {
    background-image: linear-gradient(160deg, #ff0000, #000000);
    margin-right: 50px;
}

header h2:nth-child(2) a:hover, header h2:nth-child(3) a:hover {
    background-image: linear-gradient(160deg, #00ffaa, #000000);
}

header h2 a:link, h2 a:visited {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 10px;
    padding:15px 15px 10px 10px;
}


/*-------------------- Main Introduction --------------------*/

main {
    font-size: 1.35em;
    font-weight: lighter;
    padding: 50px 15%;
    text-align: center;
    align-items: center;
    flex: 1;
}

main h2 a:link, main h2 a:visited {
    color: #ffffff;
    background-image: linear-gradient(160deg, #00aaff, #000000);
    border-radius: 10px;
    font-size: 125%;    
    margin: 10px auto;
    text-decoration: none;
    letter-spacing: 0.05em;
    padding:15px 15px 10px 10px;
}

main h2 a:hover, main h2 a:active {
    background-image: linear-gradient(160deg, #00ffaa, #000000);
}

main ul {
    background-image: linear-gradient(160deg, #00aaff, #000000);
    border-radius: 15px;
    width: fit-content;
    line-height: 1em;
    text-align: center;
    margin: 0 auto;
    padding: 50px 25px 25px 25px;
}

main h4 {
    color: #000000;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    width: fit-content;
    margin: 50px auto 0 auto;
     transform: translate(0, 30px);
}

main ul li {
    color: #ffffff;
    list-style: none;
    padding: 2.5%;
}


/*-------------------- Showcase --------------------*/

body section {
    padding: 50px 15%;
    text-align: center;
}

body section p {
    font-size: 1.35em;
    font-weight: lighter;
}

section ul {
    list-style: none;
}

figure {
    background-color: #000000;
    border-radius: 50px;
    border-style: ridge;
    border-color: #00aaff;
    border-width: 10px;
    padding: 50px;
    font-size: 1.25em;
    margin: 25px;
}

figure figcaption {
    padding-top: 5%;
}


/*-------------------- Footer Bar --------------------*/

footer {
    width: 100%;
    padding: 10px 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    background-image: linear-gradient(160deg, #333333, #000000);
    letter-spacing: -0.05em;
    text-decoration: none;
    display: inline-block;
    gap: 25px;
    min-height: 50px;
}

footer h2:nth-child(1) a:link {
    background-image: linear-gradient(160deg, #ff0000, #000000);
}

footer h2:nth-child(2) a:link {
    background-image: linear-gradient(160deg, #ff00aa, #000000);
}

footer h2:nth-child(1) a:hover, footer h2:nth-child(2) a:hover {
    background-image: linear-gradient(160deg, #00ffaa, #000000);
}

footer h2 a:link, h2 a:visited {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 10px;
    padding:15px 15px 10px 10px;
}