/* fonts & global */

@font-face {
    font-family: 'Maple Mono Light';
    src: url('fonts/MapleMono-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Maple Mono Medium';
    src: url('fonts/MapleMono-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Maple Mono Light', monospace;
    color: #040507; 
}

/* page */

.page-container {
    background-color: #606582; 
    min-height: 100vh;
    padding: 40px 0 20px 0;  /* tweak */
    overflow-x: hidden; 
}

.content-column {
    max-width: 650px; 
    width: 90%; 
    margin: 0 auto; 
}

header {
    margin-bottom: 50px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    color: #040507; 
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-family: 'Maple Mono Medium', monospace;
    font-weight: bold;
}

hr {
    border: none;
    height: 2px;
    background-color: #040507; 
}

/* main */

main {
    text-align: left; 
}

main h1 {
    font-family: 'Maple Mono Medium', monospace;
    font-size: 4.5rem; 
    color: #040507;
    margin-bottom: 40px;
    font-style: italic;
    font-weight: bold;
    text-align: center;
}

.paragraph-container {
    position: relative;
    margin-bottom: 80px;
    z-index: 1;
}

main p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #040507;
    margin-bottom: 0; 
    text-align: left; 
    position: relative; 
    z-index: 2; 
}

/* gradient */

.gradient-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(4, 5, 7, 0.33) 0%, rgba(4, 5, 7, 0) 70%);
    z-index: -1; 
    pointer-events: none; 
}

/* images */

.image-area {
    width: 100%;
    margin-bottom: 0px;
    text-align: center;
    position: relative; 
    display: flex;
    justify-content: center;
    z-index: 1; 
}

.image-area img {
    max-width: 400px;
    width: 100%;
    display: block;
}

/* 
.image-caption {
    position: absolute;
    bottom: 10px; 
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
    color: #ffffff; 
    font-family: 'Maple Mono Light', monospace;
    letter-spacing: 1px;
} */

/* footer */

.site-footer {
    background-color: #040507; 
    color: #606582; 
    padding: 30px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Maple Mono Light', monospace;
    font-size: 0.8rem; 
}

.last-updated {
    color: #888b9e; 
}

.youtube {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #888b9e;
}

.youtube a {
    display: flex;
    text-decoration: none;
}

.youtube-icon {
    width: 20px; 
    height: 20px;
}