* {
  padding: 0;
  margin: 0;
  transition: all 0.3s;
}

.play-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0b8262;
  width: 100%;
  height: 100vh;
}
.play-screen .container {
  width: 100%;
  max-width: 1200px;
  background: url(../assets/images/title_background.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-screen .container .play .img-container {
  width: 600px;
  height: 400px;
  background-color: rgba(255, 255, 255, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}
@media screen and (max-width: 657px) {
  .play-screen .container .play .img-container {
    width: 100%;
    height: 400px;
  }
}
.play-screen .container .play .buttons {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.play-screen .container .play .buttons .margin-righ {
  margin-right: 4rem;
}
.play-screen .container .play .buttons a {
  text-decoration: none;
  text-align: center;
  padding: 15px;
  border-radius: 12px;
  width: 150px;
  transition: all 0.3s;
}
.play-screen .container .play .buttons a img {
  width: 100%;
  max-width: 150px;
}
@media screen and (max-width: 657px) {
  .play-screen .container .play .buttons a {
    width: 100px;
  }
}
.play-screen .container .play .buttons a:active {
  transform: scale(1.2);
}
.play-screen .container .play .buttons a:hover {
  transform: scale(1.1);
}

.level-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0b8261;
  width: 100%;
  height: 100vh;
}
.level-screen .container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.level-screen .container .level-select {
  color: #fff;
  margin-bottom: 2rem;
}
.level-screen .container .level a {
  text-decoration: none;
}
.level-screen .container .level .cards {
  display: flex;
  align-items: center;
  justify-content: center;
}
.level-screen .container .level .cards .card {
  background: #93d0ab;
  height: 400px;
  width: 280px;
  border-radius: 26px;
  margin: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.level-screen .container .level .cards .card:hover {
  scale: 1.05;
}
.level-screen .container .level .cards .card .image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.level-screen .container .level .cards .card .image .heading {
  width: 240px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0b8261;
  padding: 10px;
  color: #fff;
  border-radius: 10px;
  text-align: center;
}
.level-screen .container .level .cards .card .image .img_heading {
  width: 240px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.level-screen .container .level .cards .card .image img {
  width: 100%;
  max-width: 250px;
}/*# sourceMappingURL=main.css.map */