body {
    margin: 0;
    background: black;
    color: white;
    text-align: center;
}

#menu{
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 200%;

    }
#menu button {
    font-size: 100%;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.8);
}
#menu button:hover {
    background: rgba(255, 255, 255, 50);
}

#Exit button{
    position: absolute;
    top:10%;
    left: 90%;
    transform: translate(-50%, -50%);
    font-size: 200%;
}



/* KÖZÖS NYÍL STÍLUS */
.arrow {
    position: absolute;
    font-size: 60px;
    padding: 10px 15px;
    background: rgba(0,0,0,0.5);
    border: none;
    border-radius: 10px;
    color: white;

}

/* POZÍCIÓK */
#upBtn {
    top: 6%;
    left: 50%;
    transform: translateX(-50%);
}

#downBtn {
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
}

#leftBtn {
    left: 6%;
    top: 50%;
    transform: translateY(-50%);
}

#rightBtn {
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
}

#runBtn {
    position: absolute;
    bottom: 80px;
    left: 90%;
    transform: translateX(-50%);
    padding: 12px 20px;
    font-size: 18px;
}

#eventLog {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);

    opacity: 0;
    transition: opacity 0.3s;

    background: rgba(0, 0, 0, 0.6);
    padding: 15px 25px;
    border-radius: 10px;

    font-size: 200%;
    max-width: 80%;
}

#eventLog.show {
    opacity: 1;
}

#gameArea {
    position: absolute;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

#mapImage {
    position: page;
    margin-top: 2.5%;
    width: 90%;
    height: 90%;
    overflow: hidden;

}
