body {
    background-color: #202020;
    margin: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-family: 'Century Gothic', sans-serif;
}

.pacman {
    height: 1000px;
    width: 1000px;
}

.options  {
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: white;
    flex-direction: column;
}

.inputform {
    width: 60vh;
}

.ux {
    width: 60vh;
    display: flex;
    align-items: center;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 8;
    height: 1000px;
    width: 1000px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
}

button {
  background-color: #dfdf1f;
  border: none;
  color: #202020;
  padding: 12px 26px;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  opacity: 0.6;
  transition: 0.3s;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

button:hover {
    opacity: 1
}

input[type=text] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: none;
  background-color: #3CBC8D;
  color: white;
  font-size: 18px;
}

.map {
    background-color: #0b0b0b;
    width: 100%;
    height: 100%;
    position: relative;
}

.ghost{
    position: absolute;
    top: 300px;
    left: 300px;
    width: 100px;
    height: 100px;
}

.gameover {
    position: absolute;
    z-index: 20;
    top: 16vh;
    height: 775px;
    width: auto;
}

img[src="./assets/img/pacman.gif"] {
    position: absolute;
    top: 500px;
    left: 500px;
    height: 100px;
    width: 100px;
}

img[src="./assets/img/background.svg"] {
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    width: 1000px;
    height: 1000px;
}

.dot {
    position: absolute;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}

.dot::before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #ff6;
}

.toLeft {
    transform: none;
}

.toTop {
    transform: rotate(90deg);
}

.toRight {
    transform: scale(-1, 1);
}

.toBottom {
    transform: rotate(-90deg);
}
.divScore{
    text-align: center;
}
.allScores{
    width: 230px
}
.infoScores{
    width: 210px
}