* {margin: 0; padding: 0; border: 0; box-sizing: border-box;
}

body {
    min-height: 100vh;
    background: linear-gradient(to bottom, rgba(67, 67, 67, 0.473), #862727);
    color: #500;
    font-family: verdana;				
    padding-bottom: 50px;
}

.homepage {
    position: absolute;
    padding-top: 8px;
    right: 16px;
    color: greenyellow;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
}

header {
    background-color: rgb(136, 56, 56);
    color: #FFC;
    text-align: center;
    height: auto; 
    padding-top: 8px;
}

header {
    font-family: 'Courier New', Courier, monospace;
}

header h1 {
    font-size: 24pt;
    letter-spacing: 20px;
    text-transform: uppercase;
}

header p {
    font-size: 8pt;
    letter-spacing: 12px;
    text-transform: uppercase;
    padding-bottom: 8px;
}

a:hover {
    color: #FFC;
}

nav {
    background-color: rgb(163, 154, 154);    
    text-align: center;
    padding: 8px;
    letter-spacing: 1.5pt;
}

nav a {
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    padding: 4px 12px;
    color: #4a0404;
}

main {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 8px;
    padding-top: 8px;
    justify-content: space-around; /* Oh YEAH! */
}

main > section:nth-child(-n + 3) {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

/* main:nth-child(2) {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 10pt;
} */

main > section:nth-child() {
    display: none;
}

section {
    background-color: white;
    border: 3px solid #500;
    border-radius: 20px;
    padding: 15px;
    max-width: 340px;
    height: 420px;
    box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.3);
    /* a little help from Gemini */
    flex: 1 1 300px; /* grow, shrink, size */
}

ol {
    list-style-type: none;
    padding-left: 8px;
    font-size: 16pt;
}

section h2 {
    text-align: center;
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #4a0404;
    text-align: center;
    margin-top: 0;
    border-bottom: 2px solid #edcc66;
    padding-bottom: 10px;
}

section ul {
    list-style-type: none;
    text-align: left;
    display: flex;
    flex-flow: row wrap;
}

section ul li {
    padding: 2px;
}

li a {
    font-weight: bolder;
    background-color: rgba(209, 122, 122, 0.75);
    border: 1px solid #4a0404;
    border-radius: 10px;         /* Makes it a bubble */
    text-decoration: none;
    color: #500;
    padding: 4px;
    display: inline-block;
    margin-bottom: 12px;
    text-transform: uppercase; 
    
}
.mission-brief {
    background: linear-gradient(to bottom, rgba(67, 67, 67, 0.1), rgba(134, 39, 39, 0.9));
    padding: 8px 25px;
    height: 360px;
    border-radius: 0px 0px 20px 20px;
    
}

footer {
    background-color: #444;
    color:  #EEE;
    min-height: 100px;
    padding: 8px;
    margin-top: 80px;

}



