@font-face {
	font-family: edunline;
	src: url('../font/edunline.eot');
	src: url('../font/edunline.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}


html, body {
    margin: 0;
    padding: 0;
    font-family: edunline, sans-serif;
}

body {
    background-color: #000000;
    overflow: hidden;
}

#game {
    display: block;
    margin: 0 auto;
}

#game-container {
    position: relative;
    text-align: center;
}

.game-info {
    visibility: hidden;
    position: absolute;
    width: 100%;
    top: 10px;
}

.menu-item {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    background-color: #c0c0c0;
    -moz-border-radius: 15px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    border: 3px solid #707070;
    padding: 5px;
    margin-bottom: 10px;
    font-weight: bold;
}

.menu-link:hover {
    cursor: pointer;
    opacity: 0.8;
    border: 3px solid #a0a0a0;
}

.menu-text {
    margin-bottom: 15px;
    margin-top: 15px;
}

#game-over {
    visibility: hidden;
}


.score1 {
    font-size: 30px;
}
.score2 {
    font-size: 27px;
}
.score3 {
    font-size: 23px;
}
.score {
    font-size: 20px;
}
.score_title {
    font-size: 15px;
}

/* Media query for devices with a maximum width of 768px (typical for portrait mode) */
@media only screen and (max-width: 768px) {
    .menu-item {
        width: 80%; /* Adjust the width as needed for portrait mode */
        margin: 0 auto;
    }
}