@import url('https://fonts.googleapis.com/css?family=Press+Start+2P');

body {
  margin: 0;
  font-family: 'Press Start 2P', cursive;
  font-size: 2em;
  color: white;
}
button {
  outline: none;
  cursor: pointer;
  border: none;
  box-shadow: 3px 5px 0px 0px rgba(0,0,0,0.75);
}
#counter {
  position: absolute;
  top: 20px;
  right: 20px;
}
#end {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
}
#end button {
  background-color: red;
  padding: 20px 50px 20px 50px;
  font-family: inherit;
  font-size: inherit;
}
#controlls {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
#controlls div {
  display: grid;
  grid-template-columns: 50px 50px 50px;
  grid-template-rows: auto auto;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  margin-bottom: 20px;
}
#controlls button {
  width: 100%;
  background-color: white;
  border: 1px solid lightgray;
}
#controlls button:first-of-type {
  grid-column: 1/-1;
}



.gameIconImage {
  position: absolute;
  border-radius: 30%;
  top: 325px;
  left: 100px;
  width: 125px;
  height: 50px;
  opacity: 0.85;
}

.gameIconImage:hover {
  position: absolute;
  border-radius: 30%;
  top: 325px;
  left: 100px;
  width: 145px;
  height: 60px;
  opacity: 0.85;
}

.gameIconImageOther {
  position: absolute;
  border-radius: 30%;
  top: 300px;
  right: 160px;
  width: 225px;
  height: 100px;
}

.gameIconImageOther:hover {
  position: absolute;
  border-radius: 30%;
  top: 300px;
  right: 160px;
  width: 225px;
  height: 100px;
  opacity: 0.75;
}

.returnToGamePage {
  position: absolute;
  top: 400px;
  left: 80px;
  font-size: 1rem;
  font-weight: 1000;
  text-align: center;
}

.returnToGamePage:hover {
  position: absolute;
  top: 400px;
  left: 80px;
  font-size: 1.1rem;
  font-weight: 1000;
  text-align: center;
  color: violet;
}

.returnToGamePageOther {
  position: absolute;
  top: 500px;
  right: 160px;
  font-size: 2.5rem;
  font-weight: 1000;
  text-align: center;
}

.returnToGamePageOther:hover {
  position: absolute;
  top: 500px;
  right: 160px;
  font-size: 2.6rem;
  font-weight: 1000;
  text-align: center;
  color: violet;
}

.returnSection {
  border-style: solid;
  border-width: 3px;
  z-index: 100;
}