/* --- REFERENCE ---

--- Colors ---
Body BG - #19201E
Lighter BG - #2A3431
Headings - #DCE5E3
Body text - #B4BCBB
Accents - #9CD48E

--- Typography ---
Accents - Courier Prime
*/

* {
    margin: 0;
    padding: 0;
}

/* --- INDEX --- */
/* Typography and Colors */
body {
    font-family: acumin-pro, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
    background-color: #19201E;
    color: #B4BCBB;
    margin: 0 auto;
    max-width: 50em;
}

header h1 {
    font-family: acumin-pro, sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 1.7rem;
}

header h1,
h2 {
    color: #DCE5E3;
}

header h2 {
    font-family: courier-prime, monospace;
    font-weight: 400;
    font-style: normal;
    color: #9CD48E;
    font-size: 1.3rem;
}

h4 {
    font-family: courier-prime, monospace;
    font-weight: 400;
    font-style: normal;
    color: #9CD48E;
    font-size: 1rem;
}

#labs div:hover,
#assignments div:hover {
    background-color: #2A3431;
    border-radius: 2%;
}

a {
    text-decoration: none;
    color: #DCE5E3;
}

a:hover {
    text-decoration: underline;
    color: #9CD48E;
}

/* Images */
#icon {
    border-radius: 50%;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25), 0px 4px 40px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.thumb {
    width: 100%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    border-radius: 3%
}

/* Box Model */

.container {
    margin: 1.5rem;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: solid .0625rem #2A3431;
}

header h1 {
    margin-bottom: 1rem;
}

#icon {
    margin-bottom: 1rem;
}

#coursedesc {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.labs,
.assignments {
    margin-bottom: 2rem;
    text-align: center;
}

.assignments {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: solid .0625rem #2A3431;
}

#labs div,
#assignments div {
    padding: 1rem;
}

#labs div img,
#assignments div img {
    margin-bottom: 1rem;
}

#labs div h3,
#assignments div h3 {
    margin-bottom: 0.5rem;
}

#labs div h4,
#assignments div h4 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

footer {
    border-top: solid .0625rem #2A3431;
    margin-top: 2rem;
    text-align: center;
    padding: 1rem;
    font-size: 0.8rem;
    color: #9CD48E;
}

/* --- PROJECT PAGES --- */

.return {
    text-align: left;
    font-family: courier-prime, monospace;
    font-weight: 400;
    font-style: normal;
    color: #9CD48E;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
}

header h2 {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.projectinfo {
    margin-bottom: 3rem;
}

.button {
    background-color: #ad5e6f;
    margin-top: 4rem;
    padding: 1rem;
    border-radius: 5%;
    font-weight: 700;
}

.button:hover {
    text-decoration: none;
    color: #DCE5E3;
    background-color: #813c4b;
}

.preproduction h3 {
    color: #DCE5E3;
    font-size: 1.3rem;
    border-top: solid .0625rem #2A3431;
    padding-top: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

iframe {
    width: 100%;
    height: 25rem;
    margin-bottom: 0.5rem;
}