@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
  margin: 0;
  text-align: center;
  font-family: 'Press Start 2P', cursive;
  user-select: none;
  background-color: darkcyan;
}
header {
  margin: 0 auto;
  width: 431px;
  position: relative;
    top: 50px;
}
h1 {
  background: url("https://i.ibb.co/Q9yv5Jk/flappy-bird-set.png") 0% 340px;
  padding: 1.2rem 0;
  margin: 0;
  position: relative;
  top: 0px;
}
.score-container {
  display: flex;
  justify-content: space-between;
  padding: 8px 6px;
  background: #5EE270;
  position: relative;
    top: 0px;
}

#canvas {
    position: relative;
    top: 50px;
}


.gameIconImage {
  position: absolute;
  border-radius: 30%;
  top: 475px;
  left: 200px;
  width: 225px;
  height: 100px;
}

.gameIconImage:hover {
  position: absolute;
  border-radius: 30%;
  top: 475px;
  left: 200px;
  width: 225px;
  height: 100px;
  opacity: 0.75;
}

.gameIconImageOther {
  position: absolute;
  border-radius: 30%;
  top: 475px;
  right: 200px;
  width: 225px;
  height: 100px;
}

.gameIconImageOther:hover {
  position: absolute;
  border-radius: 30%;
  top: 475px;
  right: 200px;
  width: 225px;
  height: 100px;
  opacity: 0.75;
}

.returnToGamePage {
  position: absolute;
  top: 600px;
  left: 160px;
  font-size: 1.65rem;
  font-weight: 1000;
  text-align: center;
}

.returnToGamePage:hover {
  position: absolute;
  top: 600px;
  left: 160px;
  font-size: 1.7rem;
  font-weight: 1000;
  text-align: center;
  color: violet;
}

.returnToGamePageOther {
  position: absolute;
  top: 600px;
  right: 160px;
  font-size: 1.65rem;
  font-weight: 1000;
  text-align: center;
}

.returnToGamePageOther:hover {
  position: absolute;
  top: 600px;
  right: 160px;
  font-size: 1.7rem;
  font-weight: 1000;
  text-align: center;
  color: violet;
}