html {
  font-size: 62.5%;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Josefin Sans", sans-serif;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #161623;
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#f00, #f0f);
  clip-path: circle(50% at right 70%);
  z-index: -1;
}
body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#2196f3, #e91e63);
  clip-path: circle(30% at 10% 10%);
  z-index: -1;
}

.centerdiv {
  position: relative;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  width: 40vw;
  padding: 3rem 8rem;
  border-radius: 1rem;
}
.centerdiv h2 {
  color: antiquewhite;
  font-size: 2.3rem;
  font-weight: 400;
  margin: 1rem 0 2rem 0;
}
.centerdiv li {
  font-size: 2rem;
  margin-top: 1.2rem;
  list-style: none;
  color: antiquewhite;
}
input {
  cursor: pointer;
}
#submit,
#btn {
  padding: 1rem 3rem;
  outline: none;
  font-size: 1.5rem;
  font-weight: 400;
  display: block;
  margin: auto;
  margin-top: 2.5rem;
  border: none;
  border-radius: 0.5px;
  text-transform: uppercase;
  color: white;
  background-color: #74b9ff;
  cursor: pointer;
}
.btn {
  padding: 1rem 3rem;
  outline: none;
  font-size: 1.5rem;
  font-weight: 400;
  display: block;
  margin: auto;
  margin-top: 2.5rem;
  border: none;
  border-radius: 0.5px;
  text-transform: uppercase;
  color: white;
  background-color: #00ff85ff;
  cursor: pointer;
}
#submit:hover {
  background: #0984e3;
}
.btn:hover {
  background: #25d95bff;
}
#showscore {
  background-color: #dfe6e9;
  margin-top: 3rem;
  padding: 3rem 4rem;
  box-shadow: 0 1rem 1rem -0.6rem rgba(0, 0, 0, 0.4);
}
.score {
  display: none;
}
.result {
  font-size: 2rem;
  text-align: center;
}
