@import url("https://fonts.googleapis.com/css2?family=Kurale&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");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: rgb(21, 21, 90);
}

.container {
  padding: 20px 20px;
}

.settingIcon {
  display: flex;
  justify-content: end;
}

.game {
  margin: 70px;
  text-align: center;
  position: relative;
}

.game > h1 {
  font-family: "Kurale", serif;
  font-size: 80px;
  color: white;
}

button a{
  color: white;
  text-decoration: none;
}

button {
  margin-top: 30px;
  font-weight: 600;
  background: transparent;
  border: 2px solid white;
  padding: 10px 20px;
  font-size: 18px;
  letter-spacing: 1.5px;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: all ease-in .5s;
}


button:hover {
  scale: 1.3;
  background-color: rgba(245, 245, 245, 0.217);
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.372);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
}

.popupContent {
  background-color: white;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.popupContent > h2 {
  margin-top: 0px;
}

.popupContent > p {
  margin-bottom: 30px;
}

.guidlines{
    font-size: 12px; 
    text-align: center;
    margin-bottom: 0px;
}

.closeIcon {
  display: flex;
  margin-left: 350px;
  cursor: pointer;
}

.sound {
  display: flex;
  justify-content: center;
}

.music {
  display: flex;
  justify-content: center;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin-bottom: 20px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #07cc00;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #eb0909;
}

input:focus + .slider {
  box-shadow: 0 0 1px #07cc00;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.handImg {
  padding: 10px 10px;
}

.handImg  p{
  margin-top: 10px;
}

.wraps {
  display: flex;
  justify-content: space-between;
}

.cut {
  display: flex;
  justify-content: space-between;
}

.blunts {
  display: flex;
  justify-content: space-between;
}


@media screen and (max-width:710px) {
    .game > img{
        width: 400px;
    }

    .game > h1{
        font-size: 60px;
    }
}

@media screen and (max-width:610px) {
    .game > img{
        width: 250px;
    }
    .game > h1{
        font-size: 40px;
    }

    .settingIcon > img{
        width: 50px;
    }

    button{
        font-size: 16px;
        padding: 5px 10px;
    }
}

@media screen and (max-width:440px) {
    .game > img{
        width: 200px;
    }
    .game > h1{
        font-size: 30px;
    }

}