@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,700;1,700&display=swap");
body {
  background: #0d1424;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: white;
}

.navbar {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 9997;
  top: 0.9;
  right: 0;
  left: 0;
  position: fixed;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  background: #0d1424f1;
  border-radius: 15px;
  border: 1px solid #fff;
  opacity: 1;
}

.container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#yes {
  position:relative;
  width: 430px;
  height: 470px;
  background-color: #0b1733;
  border: 1px solid #ccc;
  padding: 10px;
  box-sizing: border-box;
  border-radius:10px;
  text-align:center;
  align-items: center;
}

button {
  border: none;
  border-radius: 1vw;
  color: white;
  font-weight: 600;
  padding: 1.2vw;
  cursor: pointer;
  user-select: none;
  background-color: #131954;
  z-index: 1;
  transition: all 0.2s ease-in-out;
  margin: 5px;
}

button:hover {
  background-color: #050c1c;
}

button:active {
  background-color: #030f2b;
}

.select-box {
  background-color: black;
  position: relative;
  width: 200px;
  cursor: pointer;
  border-radius: 10px;
  margin: 0 auto;
}

.selected-option {
  border-radius: 10px;
  padding: 10px;
  background-color: black;
  border: none;
  color: white;
}

.options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: black;
  border-radius: 10px;
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: none;
  z-index:999;
}

.options li {
  padding: 10px;
  cursor: pointer;
  color: white;
}

.options li:hover {
  background-color: #000000;
  border-radius: 10px;
}

.setinput {
  background: transparent;
  width: 150px;
  height: 30px;
  border: 1px solid #fff;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0px 0px 10px 10px rgba(255, 255, 255, 0.1);
  color:white;
  margin:5px;
}

.setinput::placeholder {
  text-align: center;
  color:white;
}

#yes h1 {
  margin:50px;
}
