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

body {
  background-color: rgb(0, 0, 0);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  padding: 20px;
}

.headersed_1 {
  width: 5vw;
  height: auto;
  margin-left: 35px;
}

.headersed_2 {
  font-size: clamp(2rem, 4vw, 54px);
  font-weight: bolder;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60vw;
  text-align: center;
}

.headersed_3 {
  width: 34vw;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 25px;
}

.top {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  width: 99vw;
  flex-wrap: wrap;
  gap: 20px;
}

.nor_but {
  height: 50px;
  border-radius: 100px;
  font-size: 17px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0 15px;
}

.no_bor {
  border: none;
  background-color: transparent;
  cursor: pointer;
  color: rgb(145, 137, 137);
}

.no_bor:hover {
  transform: scale(1.05);
  color: white;
}

.yes_bor {
  width: 130px;
  background-color: rgb(0, 0, 0);
  border: 1px solid rgb(128, 125, 125);
  color: white;
  font-weight: bolder;
  cursor: pointer;
}

.yes_bor:hover {
  background-color: rgb(255, 251, 251);
  color: black;
  transition: all 0.3s;
}

.main {
  width: 95vw;
  max-width: 1200px;
  min-height: 600px;
  color: rgb(36, 36, 36);
  border: 1px solid white;
  border-radius: 40px;
  background-color: rgba(54, 52, 52, 0.37);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
}

.guessed {
  width: 20vw;
  min-width: 200px;
  height: 100px;
  border: 1px solid rgb(94, 92, 92);
  border-radius: 40px;
  background-color: rgb(0, 0, 0);
  font-size: 30px;
  color: white;
  text-align: center;
  cursor: pointer;
}

.guessed:hover {
  border: 1px solid rgb(255, 255, 255);
}

.guessed_1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.submit {
  height: 60px;
  width: 150px;
  border-radius: 10px;
  font-size: 25px;
  font-weight: bolder;
  cursor: pointer;
  border: none;
}

.submit:hover {
  background-color: black;
  color: white;
  border: 1px solid white;
  transition: all 0.3s;
}

.guessed_2 {
  width: 60vw;
  min-width: 300px;
  height: 500px;
  border: 1px solid white;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 50px;
  padding: 20px;
}

.sub_guss {
  color: white;
  font-size: clamp(1.2rem, 2.5vw, 30px);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bolder;
  width: 100%;
  max-width: 850px;
  height: 100px;
  border: 1px solid rgb(67, 65, 65);
  border-radius: 20px;
  text-align: center;
  padding: 10px;
}

.part1 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.part1_1 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 100%;
  flex-wrap: wrap;
}

.sub_guss_1 {
  color: white;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bolder;
  width: 100%;
  max-width: 400px;
  height: 70px;
  border: 1px solid rgb(67, 65, 65);
  border-radius: 20px;
}

.part1_new {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.sub_guss_new {
  color: white;
  font-size: clamp(1.2rem, 2.5vw, 30px);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bolder;
  width: 100%;
  max-width: 750px;
  height: 100px;
  border: 1px solid rgb(255, 252, 255);
  border-radius: 20px;
  position: relative;
  text-align: center;
  padding: 10px;
}

.hint {
  color: #ffcc00;
  font-size: 18px;
  margin-top: 10px;
}

@media (max-width: 1400px) {
  .guessed_2 {
    height: 600px;
  }
}
@media (max-width: 768px) {
  .top {
    flex-direction: column;
    gap: 10px;
  }

  .headersed_1,
  .headersed_2,
  .headersed_3 {
    width: 100%;
    margin-left: 0;
    justify-content: center;
  }

  .main {
    flex-direction: column;
    gap: 30px;
  }

  .guessed_1,
  .guessed_2 {
    width: 100%;
  }
}
