/* global */

body {
    background-color: #000000;
    color: #ffffff;
    font-family: "MS Gothic";
    margin: 0;
    padding: 0;
}

/* header */

header {
    background-color: #000000;
    text-align: center;
    padding: 20px;
    font-size: 36px;
    border-bottom: 2px solid #FF0000;
    color: #FF0000;
}

header a {
    color: #FF0000;
    text-decoration: none;
}

/* navigation */

nav {
    text-align: center;
    padding: 10px;
    border-bottom: 2px solid #FF0000;
    font-size: 14px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 8px;
}

nav a:hover {
    text-decoration: underline;
}

/* main content */

main {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
}

section {
    margin-bottom: 60px;
}

h3 {
    color: #ffffff;
    font-weight: normal;
    margin-bottom: 10px;
}

/* links */

a {
    color: #ffffff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.underline {
    text-decoration: underline;
}

/* gif */

.gif-container {
    text-align: center;
    margin: 20px auto 60px auto;
}

.gif-container img {
    width: 200px;
    height: 200px;
}

/* footer */

footer {
    text-align: center;
    padding: 10px;
    font-size: 14px;
    border-top: 2px solid #FF0000;
    color: #FF0000;
}

.gif-row {
    display: flex;
    justify-content: center; /* centers the row horizontally */
    gap: 20px; /* space between gifs */
    margin: 20px auto 60px auto;
}

.gif-row img {
    width: 200px;
    height: 200px;
    display: block;
}

.footer-logo {
    text-align: center;
    margin-bottom: 10px; /* space between logo and copyright */
}

.footer-border {
    border-top: 2px solid #FF0000;
    margin: 10px 0;
}


.footer-logo {
    text-align: center;
    margin-bottom: 10px; /* space between logo and red line */
}

.footer-logo img {
    max-width: 100%;
    height: auto;
}

.footer-text {
    font-size: 14px;
}

header {
    background-color: #000000;
    text-align: center;
    padding: 20px 0;
    border-bottom: 2px solid #FF0000;
}

header img {
    max-width: 100%;
    height: auto;
}

.header-container {
    position: relative; /* allows absolute positioning of child logos */
    text-align: center; /* centers main header logo */
    background-color: #000000;
    border-bottom: 2px solid #FF0000;
    padding: 20px 0;
}

.header-container img {
    max-width: 100%;
    height: auto;
}

.about-placeholder {
    text-align: center;
    margin: 40px auto;
}

.about-placeholder img {
    width: 230px;
    height: 300px;
    display: block;
    margin: 0 auto;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: "MS Gothic";
    margin: 0;
    padding: 0;

    /* placeholder background image */
    background-image: url('background\ monster.png'); /* replace with your image file */
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

