@import url('https://fonts.googleapis.com/css2?family=Anonymous+Pro&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    font-family: 'Anonymous Pro', monospace;
    margin: 0;
}

body {
    margin: 0;
    color: white;
    background-color: black;
    display: block;
    width: 100vw;
    overflow-x: hidden;
}

.infobox {
    display: flex;
    width: 65%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.infobox h1 {
    font-family: 'Anonymous Pro', monospace;
    font-size: 2em;
    margin: 2em 0;
}

@media screen and (max-width: 768px) {
    .infobox {
        width: 90%;
    }
    .title-wrapper h1 {
        font-size: 16px;
    }
    .infobox {
        font-size: 16px;
    }
}

.title-wrapper {
    width: 100%;
    display: flex;
    height: 7vh;
    justify-content: center;
    align-items: center;
    background-color: rgb(19, 19, 19);
    margin-bottom: 2em;
}

.infobox h2 {
    font-family: 'Anonymous Pro', monospace;
    display: flex;
    justify-content: start;
    width: 100%;
    margin: .5em;
}

.infobox p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2em;
    margin: 0;
}

.infobox img {
    display: block;
    width: 100%;
}

.infobox-left {
    margin-right: auto;
    margin-top: 2em;
}

.divider {
    width: 100%;
    height: 5px;
    background-color: rgb(19, 19, 19);
    margin: 3em 0;
}

.infobox-vertical-wrapper {
    width: 65%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: auto;
    height: 80vh;
}

.infobox-image {
    height: 60%;
    width: 100%;
    margin-bottom: 2em;
}

.infobox-vertical p {
    width: 100%;
}

.infobox-image img {
    width: 100%;
    height: 100%;
    transition: all .25s ease-in-out;
}

.infobox-image img:hover {
    transform: scale(1.02);
    cursor: pointer;
}

.infobox-text {
    height: 40%;
    width: 95%;
}

.infobox-vertical {
    width: 48%;
    display: flex;
    flex-direction: column;
}

.infobox-vertical:nth-child(1) {
    margin-right: 1%;
}

.infobox-vertical:nth-child(2) {
    margin-left: 1%;
}

footer {
    margin-top: 5em;
    text-align: center;
    background-color: white;
    padding: .75em 0;
}

footer p {
    display: flex;
    color: black;
    margin-left: 17.5%;
    font-size: 1.1em;
}

footer a {
    transition: all .25s ease-in-out;
    color: black;
}

footer a:hover {
    transform: scale(1.07);
}

.code-box {
    height: 60%;
    width: 90%;
    padding: 1em;
    margin-bottom: 2em;
    overflow-y: scroll;
    overflow-x: hidden;
    font-size: 1em;
    background-color: rgb(22, 22, 22);
}

.code-box pre {
    word-wrap: break-word;
    white-space: pre-wrap;
    word-break: normal;
    padding: 1em;
}