body {
  font-family: 'Montserrat', sans-serif;
  background-color: black;
  color: blue;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.pm {
  margin-top: 0px;
  margin-bottom: 0px;
}

.instruct {
  color: yellow;
  margin: 20px 0px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  75% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

#meta {
  float: left;
  width: 80%;
  margin: 0px 160px;
  height: 100vh;
  font-size: 30px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0px;
}

h2 {
  color: yellow;
}

h3 {
  color: blue;
  margin: 24px 0px;
}

button {
  background-color: yellow;
  padding: 10px;
  font-size: 25px;
  color: blue;
  margin-bottom: 20px;
}


button:hover {
  background-color: blue;
  color: yellow;
}

#grid {
  display: flex;
  flex-wrap: wrap;
  width: 560px;
  height: 560px;
  border: 2px solid black;
  float: right;

}

#grid div {
  width: 20px;
  height: 20px;
}

.dot {
  background-color: #cfa500;
  border: 7px solid black;
  box-sizing: border-box;
  border-radius: 50%;
}

.energizer {
  background-color: white;
  border-radius: 10px;
  animation: eng-an 1s infinite;
}

@keyframes eng-an {
  0% {
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  75% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.wall {
  background-color: grey;

}

.pac-man {
  background-image: url(assets/pac2.png);
  background-size: contain;
  border-radius: 10px;
  background-repeat: no-repeat;
}

.red {
  background-color: black !important;
  background-image: url('assets/red.png');
  background-size: contain;
  border: 0px;
  border-radius: 0px;
  background-repeat: no-repeat;
  animation: none;
}

.dizzy-red {
  background-image: url('assets/rD.png') !important;
}

.dizzy-cyan {
  background-image: url('assets/bD.png') !important;
}

.dizzy-orange {
  background-image: url('assets/yD.png') !important;
}

.cyan {
  background-color: black !important;
  background-image: url('assets/blue.png');
  background-size: contain;
  border: 0px;
  border-radius: 0px;
  background-repeat: no-repeat;
  animation: none;
}

.orange {
  background-color: black !important;
  background-image: url('assets/yellow.png');
  background-size: contain;
  border: 0px;
  border-radius: 0px;
  background-repeat: no-repeat;
  animation: none;
}

.dizzy {
  background-color: black;
  border: 0px;
  border-radius: 0px;
  background-size: contain;
  background-repeat: no-repeat;
}

.scoreBoard {
  display: flex;
  border: 4px solid yellow;
  height: 186px;

  cursor: default;
}

.name {
  /* margin-right: 30px; */
}

.infos {
  border-bottom: 4px solid yellow;

}

.s-right {
  border-right: 4px solid yellow;
}

.s-text {
  padding: 4px 25px;
  height: 37px;


}

.s-text-p {
  text-align: justify;
}

::-webkit-scrollbar {
  display: none;
}

.s-text-c {
  border-bottom: 2px solid yellow;
}

.info {}

#title-img {
  width: 100%;
}

.menu {
  width: 400px;
}

.space {
  height: 100vh;
}

.grid-p {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 1920px) {
  #meta {
    width: 50%;
  }
}