* {
  margin: 0;
  padding: 0;
}
a {
  margin-left: 20px;
  font-size: 22px;
  text-decoration: none;
  color: #fff;
  transition: 0.3s ease;
  font-weight: 600;
  text-align: center;
  background-image: linear-gradient(to right, #999fd4, #65ffdd, #999fd4);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
a:hover {
  background-image: linear-gradient(to left, #999fd4, #65ffdd, #999fd4);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.main {
  width: 100%;
  height: 100vh;
  /* background-color: brown; */
  background: linear-gradient(to left, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2)),
    url(./main.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.center {
  width: 50%;
  height: 500px;
  background-color: #1f29377c;
  padding: 15px;
  border-radius: 12px;
  backdrop-filter: blur(12px);
  box-shadow: inset 2px 2px 6px #222, inset 2px 2px 6px #000;
}

.center h1 {
  text-align: center;
  background-image: linear-gradient(to right, #999fd4, #65ffdd, #999fd4);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 32px;
}

#click,
#reset {
  font-size: 16px;
  margin: 5px;
  padding: 10px;
  cursor: pointer;
  color: #fff;
  border: none;
  background-color: #3882f6;
  border-radius: 12px;
}

#click:disabled,
#reset:disabled {
  background-color: #6a9ced;
  cursor: not-allowed;
}

.display {
  width: 100%;
  height: 70%;
  /* border: 1px solid red; */
}
.display h2 {
  text-align: center;
  margin: 10px;
  color: #fff;
}

.mine {
  /* border: 1px solid red; */
  margin-left: 30px;
  width: 90%;
  height: 80%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.mine p {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  width: 270px;
  margin: 5px;
  display: flex;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  height: 45%;
  background-color: #3882f6;
}

ul {
  font-size: 26px;
  color: #fff;
  margin-top: 30px;
}
