@media screen and (max-width: 800px) {
    header {
        font-size: 2.1vw;
        padding: 0px;
        padding-top: 0.4vh;
    }

    main {
        font-size: 2.2vw;
    }
    body {
        overflow: hidden;
    }
     
}
body {
    font-family: monospace;
    text-align: center;
    /* background: linear-gradient(to top, black, #070707); */
    background-color: black;
    color: #f1eee6; 
    min-height: 100vh;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* overflow-x: hidden; */
    overflow: hidden;
    flex-direction: column;
    display: flex;
    /* flex-flow: column wrap; */
    /* justify-content: center; */
    
}
header, main {
    text-align: center;
}

header {
    padding-top: 2vh;
    padding-bottom: 0.6vh;
}

main {
    text-align: center;
    align-items: center;
    /* width: 100%; */
    margin: 0;
    box-sizing: border-box;
    /* display: flex; */
    /* flex-direction: column; */
    justify-content: center;
    margin: 0.1vh auto;
    flex: 1;
    height: auto;
} 

.ascii-container {
    position: relative;
    /* height: 72vh; */
    /* width: 20%; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: auto;
    /* max-width: 100%; */
    height: auto;
}

.ascii-art {
    display: block;
    color: inherit; /* Make the link the same color as the surrounding text */
    text-decoration: none; /* Remove the underline */
}

.ascii-art.hover {
    display: none;
}

.ascii-container:hover .ascii-art {
    display: none;
}

.ascii-container:hover .ascii-art.hover {
    display: block;
}

.ascii-container:active .ascii-art {
    display: none;
}

.ascii-container:active .ascii-art.hover {
    display: block;
}
a {
    color: inherit; /* Make the link the same color as the surrounding text */
    text-decoration: none; /* Remove the underline */
}
footer {
    font-family: monospace;
    font-weight: normal;
    text-transform: none;
    width: 100%;
    font-size: 14px;
    /* padding: 0.1vh 0; */
    display: flex;
    position: fixed;
    bottom: 0.2vh;
    justify-content: center;
    margin: auto;
    /* margin-top: 5px; */
}

* {
    box-sizing: border-box;
}

pre {
    margin: 5px;
}
		