* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100vh;
    width: 100vw;
    display: grid;
    place-items: center;
}

body {
    background-color: black;
}

.container {
    border: 1px solid red;
    height: 90%;
    width: 50%;
    background-image: url(background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
}

.screen,
.button-container {
    position: absolute;
}

.screen {
    width: 13.2%;
    height: 21.3%;
    background-color: rgb(65, 207, 65);
    top: 36%;
    left: 43.5%;
    border-radius: 6px;
}

.button-container {
    height: 12%;
    width: 17%;
    top: 61%;
    left: 42%;
    font-size: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    color: transparent;
}

.game-btn {
    position: relative;
    cursor: pointer;
}

.game-btn:active {
    text-shadow: 5px 4px 3px rgba(0,0,0,0.5);
}

.game-btn:first-child {
    top: -.5rem;
    left: -1.1rem;
}

.game-btn:nth-child(2) {
    bottom: -.4rem;
    right: .6rem;
}

.game-btn:nth-child(3) {
    top: -.5rem;
    left: -.2rem;
}

.game-btn p {
    font-size: 1rem;
    color: black;

    text-shadow: 2px 2px 3px rgba(0,0,0,0.8);
}