* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

body {
  display: flex;
  justify-content: center;
  background: rgb(2, 0, 36);
  background: radial-gradient(
    circle,
    rgba(2, 0, 36, 1) 0%,
    rgba(9, 9, 121, 1) 35%,
    rgba(0, 212, 255, 1) 100%
  );
}

.box {
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 20px 0px 10px rgba(2, 0, 36, 0.1);
}

h1 {
  color: #ffffff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 50px;
}

h2 {
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  text-align: center;
  font-weight: 300;
}

.button-box {
  width: 100%;
  display: flex;
  justify-content: center;
}

button {
  background-color: black;
  color: white;
  width: 220px;
  height: 64px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  border-radius: 10px;
  outline: none;
  border: 0px;
}

i {
  margin-right: 10px;
}
