body{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/mario_bg.png");
    background-repeat: no-repeat;
    background-size: 100% 745px;
    position: fixed;
}
label {
    display: inline-block;
    width: 140px;
    text-align: left;
    font-family: 'Early GameBoy', sans-serif;
    font-size: 0.8rem;
    margin: 4px;
    margin-left: 5px;
}
input[type=text] {
    display: inline-block;
    width: 140px;
    text-align: left;
    font-family: 'Early GameBoy', sans-serif;
    font-size: 0.6rem;
}
input[type=file] {
    display: inline-block;
    width: 140px;
    text-align: left;
    font-size: 0.6rem;
}
.closeMenu{
    position: absolute;
    top: 5%;
    left: 93%;
    font-family: 'Early GameBoy', sans-serif;
    font-size: 1.5rem;
    user-select: none;
}
.settings{
    border-radius: 10px;
    position: absolute;
    z-index: 150;
    display: none;
    width: 50vw;
    height: 60vh;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #BFC3AB;
}
.settingsButton{
    height: 8.5%;
    width: 5%;
    position: absolute;
    top: 2%;
    left: 94%;
}
.controls{
    width: 30%;
    height: 80%;
}
.controls input{
    margin: 5px;
}
.graphics{
    width: 50%;
    height: 80%;
    position: absolute;
    left: 30%;
    top: 33%;
}
.otherSettings{
    width: 50%;
    height: 80%;
    position: absolute;
    left: 30%;
    top: 67%;
}
img{
    /*Only works in Webkit browers*/
    -webkit-user-drag: none;
}
.graphicsChecks, .graphicBackground{
    margin-bottom: 25px;
}
.otherSettings{
    margin-top: 25px;
}
.githubLogo{
    width: 8%;
    height: 9%;
    border-radius: 50%;
    position: absolute;
    left: 85%;
    top: 50%;
}
.konamiImage{
    width: 25%;
    height: 15%;
    top: 85%;
    left: 38.5%;

    position: absolute;
    user-select: none;
}
.logo{
    width: 25%;
    height: 25%;
    left: 50%;
    top: 13%;
    position: absolute;
    transform: translate(-50%, -50%);
    user-select: none;
}
@font-face {
    font-family: 'Early GameBoy';
    src: url('./fonts/Early-GameBoy.woff2') format('woff2'), url('./fonts/Early-GameBoy.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


.text{
    position: absolute ;
    bottom:18px;
    right:50px;
    font-family: "Early GameBoy", sans-serif;
    background-color: rgb(255,255, 255, 0.7);
    color: rgb(51, 51, 51);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 30px 10px 30px;
    z-index: 1500;
    /* display: none; */
}

.hidden{
    visibility: hidden;
}

.visible{
    visibility:visible;
}