@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;600&display=swap');

body {
  margin: 0;
  padding: 0;
  background: #c1abf7;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #fff;
  text-align: center;
}

.center-box {
  max-width: 600px;
  padding: 40px;
}

h1 {
  font-size: 10rem;
  margin: 0;
  font-weight: 600;
  letter-spacing: -5px;
}

.subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.button {
  display: inline-block;
  padding: 14px 28px;
  background: #fff;
  color: #c1abf7;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.button:hover {
  background: #eee;
  color: #a188d4;
}
