.football {
  position: relative;
  margin: 15px 10px 0;
}
.score {
  position: absolute;
  left: calc(50% - 12.2vh);
  font-size: 19vh;
  color: #fff;
}
.goal {
  position: absolute;
  top: 20vh;
  left: calc(50% - 23.2vh);
  font-size: 10vh;
  color: #ffdb0e;
  text-shadow: 0px 0px 10px #000;
}
.field {
  height: 96.5vh;
  width: 100%;
  border-radius: 10px;
}
.ball {
  position: absolute;
  cursor: pointer;
  top: 0vh;
  left: 0vh;
  height: 9vh;
}
