/* FONT */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@font-face {
  font-family: "Tropika";
  src: url(../assets/tropika.otf);
}
@font-face {
  font-family: "Barmeno";
  src: url(../assets/Barmeno.otf);
}

/* STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

body {
  background: transparent;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
}

.difficulty-title {
  text-align: center;
  text-transform: uppercase;
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 3rem;
}

.btn-container img {
  width: 450px;
}

.bg-home {
  position: absolute;
  width: 600px !important;
  top: 80px;
  z-index: -1;
}

.btn {
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  transform: translateY(5px);
}

.btn-container-return {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  padding: 1rem;
}

.btn-return {
  transition: all 0.3s ease-in-out;
}

.btn-return:hover {
  transform: translateY(5px);
}

.btn-home {
  margin-top: 1rem;
}
.popup {
  font-family: "Barmeno", sans-serif !important;
  width: 450px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
  text-transform: uppercase;
  margin: 0 auto;
  background-image: url("../assets/bg-win.png");
  margin-top: 1rem;
  border-radius: 1rem;
}

.result-iframe {
  background-color: #4e4997;
}

.p-final-color {
  color: white;
  text-align: center;
  padding: 1rem 10rem;
}

.result {
  padding-bottom: 1rem;
}

.btn-home-win {
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-home-win img {
  width: 100px;
}
#winner-message {
  font-size: 1.2rem;
  font-weight: 700;
}

/* MEDIA QUERIES */
@media (max-width: 690px) {
  .btn-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .bg-home {
    position: absolute;
    width: 370px !important;
    top: 50px;
    z-index: -1;
  }
  .btn-container img {
    width: 300px;
  }
  .btn-gamemode {
    margin: 0.1rem;
    font-size: 0.8rem;
  }
  .p-final-color {
    color: white;
    text-align: center;
    padding: 1rem 1rem;
  }
  .popup {
    width: 350px;
    height: 100px;
  }
}
