@font-face {
    font-family: Cormorant;
    src: url('../fonts/Cormorant-Bold.ttf') format('truetype');
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    margin-bottom: 5rem;
}

header h1 {
    font-size: 4rem;
    text-align: center;
    background-image: linear-gradient(to right, blue, #d7b5b5, #ff9393, #d7b5b5, blue);
    padding: 3rem;
    font-family: Cormorant, Arial, serif;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

main article {
    border: 1px solid #d2d0d0;
    border-radius: 1rem;
    padding: 1rem;
    background-color: #fafafa;
    box-shadow: 0 0 0.5rem 0.25rem #d2d0d0;
    min-width: 30%;
    max-width: 50%;
    margin-bottom: 5rem;
}

main article h2 {
    text-align: center;
    font-size: 3rem;
    margin-top: 1rem;
}

main article p {
    font-size: 1.5rem;
    margin: 1rem;
}

main article a {
    text-decoration: none;
}

main article img {
    width: 100%;
}

footer {
    text-align: center;
    margin-top: auto;
    background-color: #312c2c;
}

footer ul {
    display: flex;
    justify-content: space-evenly;
    list-style-type: none;
}

footer ul li {
    color: white;
    font-size: 1.5rem;
    padding: 2rem;
}

footer ul li a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: 0.1s ease-in;
    border-bottom: 1px solid transparent;
    margin-bottom: 0.5rem;
    display: inline-flex;
}

footer ul li a:hover {
    border-bottom: 2px solid #fff;
}

#brainfart-video {
    width: 100%;
    min-height: 17.5rem;
    max-height: 100%;
    max-width: 50%;
}

#well-image {
    display: flex;
    width: 50%;
    margin: 0.5rem auto;
}

#gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: 1rem;
}

.gallery-image {
    width: 45%;
    height: auto;
    margin: 1%;
}

/* Misc */

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

s {
    text-decoration: line-through;
}

#score {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    padding-bottom: 1rem;
    margin-top: 1.5rem;
}

#gameContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

canvas {
    border: 2px solid #000;
    background-color: #70c5ce;
}

#notFromGPT {
    font-size: 0.25rem;
    font-style: italic;
    text-decoration: line-through;
}

#reference {
    display: flex;
    justify-content: right;
    font-size: 1.25rem;
    margin-top: 1rem;
}
