@font-face {
    font-family: "0xProto";
    src: url("../fonts/0xProto-Regular.ttf") format('truetype');
}
html, body {
    width:  100%;
    height: 100%;
    margin: 0;
}
.game, .dropbox {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.gamecanvas {
    width: 80vh;
    height: 75vh;
    display: block;
    margin: auto;
    margin-top: 5vh;
    margin-bottom: -20vh;
    border-radius: 10%;
    opacity: 0;
    outline: none;
}

.sel_container {
    display: block;
    position: relative;
    width: 100%;
    height: 20%;
}
.gameselector {
    display: inline;
    width: 25%;
    height: 3vw;
    border-radius: 15px;
    border-width: 3px;
    border-style:solid;
    font-family: "0xProto";
    font-size: 2vw;
    text-align: center;
    transition: transform 0.2s;
    transition-timing-function: ease-in-out;
}

.gameselector:focus {
    outline-width: 0;
}

.gameselector:focus {
    outline: none;
}

.sel_container {
    display:inline-block;
    position: relative;
    top: 20px;
    text-align: center;
}

#choice_num {
    display:inline;
    margin-right: 20px;
}

#romnameform {
    display: inline;
}

.choices {
    border-width: 1.5px;
    border-radius: 15px;
    border-style: solid;
    display: block;
    margin-top: -100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: scroll;
    width: 25%;
    height: 20px;
    transform-origin: 50% 100%;


}

.choices p {
    display: flex;
    margin-top: 0px;
    margin-bottom: 0px;
    align-items: center;
    justify-content: center;
    font-family: "0xProto";
    font-size: 1.2vw;
    height: 5vh;
    transition: background-color 0.2s;
    transition-timing-function: ease-in-out;
}

.choices p:hover {
    cursor: pointer;
    transition: background-color 0.2s;
    transition-timing-function: ease-in-out;
}

.choices hr {
    margin: 0px;
}