@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Quicksand', sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: url('img2.jpg') no-repeat;
  background-size: cover;
  background-position: center;
}

.wrapper {
  display: flex;
  width: 450px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(20px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 2);
  color: #fff;
  border-radius: 10px;
  padding: 30px 40px;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.wrapper h1 {
  font-size: 36px;
  text-align: center;
}


.wrapper .btn {
  width: 170px;
  height: 40px;
  border: none;
  outline: none;
  border-radius: 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 1);
  cursor: pointer;
  font-size: 16px;
  color: #333;
  font-weight: 600;
  display: block;
}
.text button {
  margin-top: 20px;
  margin-left: 25%;
}
.text button a {
  text-decoration: none;
  color: black;
}