body {
    padding: 0px;
    margin: 0px;
    background-color: black;
}

#cover {
    display: none;
    z-index: 1;
    position: absolute;
    top: 0px;
    right: 0px;
    left: 0px;
    bottom: 0px;
    background-color: rgba(0, 0, 0, 0.5);
}

#view {
    justify-content: flex-end;
    display: inline-flex;
    left: 300px;
    top: 50px;
    position: absolute;
    height: 300px;
    width: 800px;
    border: 1px solid white;
}

#box {
    left: 0px;
    bottom: 0px;
    position: absolute;
    height: 50px;
    width: 50px;
    background-color: red;
}

#controls {
    justify-content: center;
    flex-wrap: wrap;
    border: 1px solid white;
    height: 50px;
    width: 300px;
    top: 500px;
    left: 550px;
    position: relative;
    display: inline-flex;
}
.controls_keys {
    height: 50px;
    width: 50px;
}
p {
    position: absolute;
    font-size: 30px;
    top: 400px;
    left: 520px;
    color: yellowgreen;
}

#target {
    align-content: center;
    text-align: center  ;
    border: 2px dotted green;
    right: 100px;
    bottom: 0px;
    position: absolute;
    height: 50px;
    width: 50px;
    color: red;
}
/* 
#up {
    display: block;
    height: 50px;
    width: 50px;
}

#down {
    height: 50px;
    width: 50px;
}

#left {
    height: 50px;
    width: 50px;
}

#right {
    height: 50px;
    width: 50px;
} */

#dialog {
    padding-top: 10px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    position: absolute;
    top: 150px;
    left: 300px;
    display: flex;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid white;
    height: 400px;
    width: 800px;
}

#text {
    color: white;
    font-size: 80px;
}

#btn_row {
    width: 100%;
    display: inline-flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.dialog_btn {
    margin-top: 100px;
    font-size: 20px;
    border-radius: 10px;
    border: 1px solid greenyellow;
    height: 75px;
    width: 150px;
    color: greenyellow;
    background-color: black;
}

#retry:hover {
    background-color: rgb(195, 255, 0);
    color: black;
}

#next:hover {
    background-color: rgb(255, 230, 0);
    color: black;
}
