html {
    box-sizing: border-box;
}
  
  *,
  *::before,
  *::after {
    box-sizing: inherit;
}

body {
    background-color: black;
    background: url('https://i.gifer.com/1ILH.gif');
    display: flex;
    justify-content: center;
    font-family: 'Bitter', serif;
}

h2 {
    font-family: 'Rubik 80s Fade', cursive;
    color: #0070ec;
}

h4 {
    font-weight: bold;
    margin-top: 0;
}

.buttons {
    display: flex; 
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 120px;
    border-radius: 8px;
    font-size: 20px;
    margin-top: 20px;
}


#game-section {
    margin-top: 120px;
    width: 1000px;
    height: 500px;

}

#player-attributes > p{
    padding: 0px 20px;
    margin-bottom: 0px;
}

#button-div {
    display: flex;
    flex-direction: row;
    gap: 100px;
    align-items: center;
    justify-content: center;
    width: 940px;
    height: 160px;
    margin-top: 80px;
    padding: 20px;
    padding-top: 30px;
}

#prompt-text {
    margin-top: 30px;
    margin-bottom: 0;
    text-align: center;
    font-family: 'Rubik 80s Fade', cursive;
}

#prompt-div {
    text-align: center;
    width: 940px;
    height: 160px;
    font-size: 24px;
}

#game-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #bcbcbcd4;
    margin: 10px;
    width: 940px;
    height: 430px;
    border-radius: 50px;
}

#play {
    width: 300px;
    height: 50px;
    border-radius: 8px;
    margin-top: 160px;
    font-size: 20px;
    cursor: pointer;
}

#play:hover {
    background-color: lightgray;
    color: azure;
    
}

#game-div > h3{
    color: black;
    margin-top: 20px;
}

#soundtrack {
    position: absolute;
    color: rgb(255, 5, 255);
    background: url("https://media.tenor.com/1f5_2MkOz8cAAAAC/8bit-dance.gif");
    background-position: center;
    background-size: inherit;
    top: 200px;
    right: 28px;
    height: 175px;
    width: 140px;
    z-index: 1;
    text-align: center;
}

#sound-buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 80px;
    z-index: 2;
}

#sound-buttons>div :hover {
    filter: grayscale(100%);
    filter: invert();
    cursor: pointer;
}

#left-screen{
    position: absolute;
    width: 424px;
    height: 110px;
    background: url('https://cdnb.artstation.com/p/assets/images/images/036/125/405/original/igor-freitas-mesa.gif?1616779562');
    background-size: 424px 110px;
    background-position: center;
    left: 44px;
    top: 57px;
    z-index: -1;
}

#middle-screen{
    position: absolute;
    width: 424px;
    height: 110px;
    background: url('https://i.pinimg.com/originals/9b/0b/c6/9b0bc63a987fbaa2beaa44ba94e105d7.gif');
    background-size: 424px 110px;
    background-position: center;
    left: 556px;
    top: 57px;
    z-index: -1;
}

#right-screen{
    position: absolute;
    width: 424px;
    height: 110px;
    background: url('https://thumbs.gfycat.com/AlienatedSafeFrogmouth-size_restricted.gif');
    background-size: 424px 110px;
    background-position: center;
    left: 1068px;
    top: 57px;
    z-index: -1;
}