/* poppin font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* Inter font */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  transition: all 0.2s ease-in;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  background: url(./images/bg1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  background-attachment: fixed;
  padding-bottom: 50px;
}
.container {
  display: grid;
  transition: all 0.5s ease-in;

  /* place-items: center; */
  /* height: 100vh; */
}
.container h1 {
  font-size: 4.7vw;
  text-align: center;
  padding: 5px 40px;
  color: rgb(0, 0, 0);
  /* background: rgb(145, 136, 142); */
}

.settings {
  position: absolute;
  bottom: 10px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding-bottom: 20px;
  transition: all 0.3s ease-in;
}
.settings i:hover {
  transform: scale(1.1);
}

.settings i {
  font-size: 6vw;
  color: white;
}

.settings_content {
  display: flex;
  gap: 1rem;
  transition: all 1s ease-in;
}
.settings_content input {
  padding: 0.5rem;
  font-size: 1rem;
}

.settings_content button {
  padding: 0.5rem 1rem;
  background-color: green;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  color: white;
  transition: all 0.1s ease-in;
}
button:hover {
  transform: scale(1.04);
  cursor: pointer;
}
button:active {
  color: green;
  font-weight: bolder;
  /* text-decoration: underline; */
  transform: scale(0.9);
  background: rgb(198, 191, 191);
  cursor: pointer;
}
input:hover {
  transform: scale(1.04);
  cursor: pointer;
}

.hide {
  display: none;
}

.time_container {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.time_container h2 {
  line-height: 60px;
  text-align: center;
  font-size: 3vw;
}

.time_container div {
  color: white;
  font-size: 3vw;
}
/* ! after bg color  */
.bg {
  /* background: rgb(193, 130, 179) ; */
  margin: 0 70px;
  border-radius: 20px;
  padding: 10px;
  border: 5px solid rgb(167, 154, 154);
}

@media (max-width: 600px) {
  .time_container {
    flex-direction: column;
    margin-top: 40px;
    text-align: center;
    /* font-size: 5vw; */
  }
  .time_container div {
    font-size: 7vw;
    padding-bottom: 20px;
  }
  .time_container h2 {
    line-height: 13px;
    font-size: 7vw;
  }
  .container h1 {
    font-size: 7.7vw;
    text-align: center;
  }

  .settings i {
    font-size: 12vw;
  }
  .bg {
    /* background: rgb(193, 130, 179) ; */
    margin: 0 20px;
    border-radius: 20px;
    padding: 10px;
  }
}

body {
  -webkit-scrollbar {
    display: hidden;
  }
}

h2 {
  color: rgb(41, 213, 161);
  text-shadow: 4px 4px 10px black !important;
}

h1,
h2 {
  /* font-size: 12vw; */
  text-shadow: 2px 2px 2px rgb(255, 255, 255);
}
h2 div,
span {
  text-shadow: 4px 4px 10px black !important;
  /* background-color: rgb(165, 215, 148); */
}
