@font-face {
    font-family: IBMPlexMono;
    src: url(font/IBMPlexMono-Regular.ttf);
}
* {
    padding: 0;
    margin: 0;
}
body {
    background-color: #050505;
    overflow-x: hidden;
    text-align: center;
}
#navbar {
    position: fixed;
    width: 100%;
    background-color: #041404;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
}
#e60logo {
    width: 12em;
}
#tunkilogo {
    width: 9em;
    margin-right: 3em;
    transition: all .3s ease-in-out;
}
#tunkilogo:hover {
    transform: scale(1.25);
}
#gameplay {
    padding-top: 10em;
    margin-bottom: 1.5em;
}
.button {
    transition: all .6s ease-in-out;
}
.button:hover {
    transform: scale(1.2);
}
#text {
    font-family: IBMPlexMono;
    color: rgb(0, 255, 0);
    margin-bottom: 2em;
    font-size: 2em;
}
#text > a {
    color: rgb(0, 255, 0);
    text-decoration: none;
}
#e60gameplay {
    width: 80em;
}
#downloadbutton p {
    font-family: IBMPlexMono;
    color: rgb(0, 255, 0);
    font-size: 1.2em;
    margin-top: 1em;
}
#credit {
    font-family: IBMPlexMono;
    color: rgb(0, 150, 0);
    margin-top: 3em;
    margin-bottom: 1.5em;
    font-size: 2em;
}
.name {
    color: #04fc04;
}
#ost h1 {
    color: rgb(0, 255, 0);
    font-family: IBMPlexMono;
    font-size: 5em;
    margin-top: 1em;
    margin-bottom: 0.5em;
}
@media screen and (max-width: 800px) {
    #e60gameplay {
        width: 25em;
    }
    #ost h1 {
        font-size: 3em;
    }
    #ost iframe {
        height: 25em;
        width: 25em;
    }
}