@font-face {
  font-family: "Determination";
  src: url("fonts/DeterminationMonoWebRegular-Z5oq.ttf") format("truetype");

}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: white;
    font-family: "Determination", monospace;
}

/* These are where the defined containers go! */

.page {
    width: min(1400px, 100%);
    margin: 0 auto;
    padding: 60px 24px;
}

/* This is my nav container! */
.site-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 80px;
}

/* This is my logo container! */
.logo {
    width: 500px;
    max-width: 90%;
    height: auto;
}

/* This is my button row container using flex box! */
.button-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 90px;
    flex-wrap: wrap;
}

/* This is the main layout container that holds my three columns! */
.main-content {
    display: grid;
    grid-template-columns: 300px 500px 300px;
    justify-content: center;
    align-items: start;
    gap: 90px;
}

/* This defines the behavior of each content column! */
.column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* This is the generic title container styling used throughout the site! */
.section-title {
    width: 100%;
    padding: 0;
    border: 2px solid #333333;
    border-radius: 9px;
    text-align: center;
}

.section-title h2 {
    margin: 16px 0;
}

/* This is my bio container filled with all my about me information! */
.bio-container {
    width: 300px;
    padding: 10px;

    font-size: 21px;
    text-align: center;

    border: 2px solid #333333;
    border-radius: 9px;
}

/* This is my quick information box! */
.bio-quickinfo {
    width: 300px;
    padding: 10px;

    font-size: 21px;
    text-align: center;

    border: 2px solid #333333;
    border-radius: 9px;
}

.bio-quickinfo dl {
    margin: 0;
}

.bio-container p {
    margin: 0;
}

.bio-disclaimer{
        width: 300px;
    padding: 10px;

    font-size: 21px;
    text-align: center;

    border: 2px solid #333333;
    border-radius: 9px;
}
/* This is the comic container system! */
.comic-container {
    width: 500px;

    border: 2px solid #333333;
    border-radius: 9px;

    text-align: center;
    overflow: hidden;
}

.comic-container img {
    display: block;
    width: 100%;
    height: auto;
}

/* This is the badge container system! */
.badge-container {
    width: 300px;
    padding: 10px;

    border: 2px solid #333333;
    border-radius: 9px;

    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    gap: 6px;
}

/* This is where button styling goes for buttons or badges! */
.badge-button {
    display: block;

    transition: opacity 0.3s ease,
                transform 0.3s ease;

    cursor: pointer;
}

.badge-button:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.badge-button img {
    display: block;
    max-width: 88px;
    height: auto;
}

/* The styling of each button in the nav container! */
.nav-button {
    display: block;

    transform: scale(0.5);

    transition: opacity 0.3s ease,
                transform 0.3s ease;

    cursor: pointer;
}

/* Pretty much whenever I hover over a button the button will perk up a lil! */
.nav-button:hover {
    opacity: 0.8;
    transform: scale(0.6);
}

/* Ensure images fill their containers properly */
.nav-button img {
    display: block;
    width: auto;
    height: auto;
}

/* Tablet layout! */
@media (max-width: 1200px) {

    .main-content {
        grid-template-columns: 300px 500px;
    }

    .right-column {
        grid-column: 1 / -1;
        justify-self: center;
    }
}

/* Phone layout! */
@media (max-width: 900px) {

    .main-content {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .comic-container {
        width: min(500px, 100%);
    }

    .button-row {
        gap: 30px;
    }
}

