* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'BRFont'; 
    src: url('../fonts/grandmasterclash.otf');
}

@font-face {
    font-family: 'BMFont'; 
    src: url('../fonts/Lucida\ Blackletter\ Regular.ttf');
}

body {
    width: 100%;
    background-color: cornsilk;
    display: flex;
    flex-direction: column;
    align-items: center; 
    min-height: 50vh; 
}

.lg-view{
   display:inline-block;
}

.sm-view{
   display:none;
}

.header-text {
    text-align: center;
    color: crimson;
    font-family: 'Courier', Courier, monospace;
    font-weight: bold;
    font-size: 1em;
    padding-bottom: 20px;
}

.alt-color{
    color:black;
}

.page-title {
    text-align: center;
    color: crimson;
    font-family: 'Courier', Courier, monospace;
    font-size: 1.25em;
    width: 1000px;
    padding: 20px;
    font-weight: normal;
    display: inline-block;
    white-space: pre;
}

.ascii-header {
    text-align: center;
    color: black;
    font-family: 'Courier', Courier, monospace;
    font-size: 1em;
    padding: 20px;
    max-width: 100%;
    box-sizing: border-box;
    font-weight: normal;
    display: inline-block;
    white-space: pre;
}


.ascii-image {
    text-align: center;
    color: black;
    font-family: 'Courier', Courier, monospace;
    font-size: 1em;
    font-weight: bolder;
    padding: 20px;
    max-width: 100%;
    box-sizing: border-box;
    font-weight: normal;
    display: inline-block;
    white-space: pre;
}

.ascii-text-color {
    color: crimson
}

.quote {
    display: flex;
    width: 90%;
    justify-content: center;
    text-align: center;
    color: crimson;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.5em;
    width: 90%;
    padding: 20px;
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 90%;
    max-width: 1000px;
    padding: 20px;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: crimson;
    font-family: 'Courier', Courier, monospace;
    font-size: 1em;
    width: auto;  
    margin: 10px;
}

.poster-entry {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    flex: 1 2 auto;
    margin: 10px;
    font-family: 'Courier', Courier, monospace;
}

.poster-entry img {
    max-width: 400px;  
    min-width: 100px;  
    margin: 1.25em;
    object-fit: contain;
}

.poster-entry-text {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    flex: 1 2 auto;
    max-width: 400px;  
    min-width: 100px;  
    margin: 1.25em;
    object-fit: contain;
    font-family: 'Courier', Courier, monospace;
}

.poster-entry h1 {
    color: crimson;
    font-size: 1.5em;
    font-weight: normal;
    text-decoration: underline;
    margin-bottom: 0.5em;
}

.poster-entry h2 {
    color: black;
    font-size: 1.5em;
    font-weight: normal;
}

.poster-entry h3 {
    color: black;
    font-size: 1.2em;
    font-weight: normal;
    margin-bottom: 0.5em;
}

.poster-entry p {
    color: black;
    font-size: 1em;
    margin-bottom: 0.5em;
}

@media screen and (max-width: 1000px) {
    .lg-view{
       display:none;
    }

    .sm-view{
       display:inline-block;
    }

    .quote {
        width: 400px;
    }

    .button-container {
        max-width: 500px;
    }

    .ascii-image {
        font-size: 1.8vw;
    }
}

@media screen and (max-width: 500px) {
    .lg-view{
       display:none;
    }

    .sm-view{
       display:inline-block;
       font-size: 2.5vw;
    }
    
    .ascii-header {
        font-size: 3.5vw;
    }

    .quote {
        max-width: 300px;
    }

    .button-container {
        max-width: 500px;
        min-width: 100px;
    }

    .ascii-image {
        font-size: 1.8vw;
    }

    .poster-entry img {
        max-width: 90%;
        height: auto;
    }
}

