html {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", serif;
  background-size: cover;
  background-position: center center;
  backdrop-filter: blur(32px);
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 100%;
}

body.dark {
  color: #fff;
  background-color: #0D1016;
  background-image: url('../img/bg-green.svg');
}

body.light {
  color: #414652;
  background-color: rgb(236, 236, 236);
  background-image: url('../img/bg-gray.svg');
}

.title {
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  text-align: center;
  margin: 0;
  max-width: 468px;
}

.text {
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  text-align: center;
  color: #B7B7B7;
}

.button {
  padding: 10px 12px;
  border-radius: 4px;
  font-size: 14px;
  font-family: "Inter", serif;
  background-color: #14A05A;
  color: #fff;
  border: none;
  cursor: pointer;
}

.button:hover {
  background-color: rgb(50, 190, 120);
}
