body {
  margin: 0;
  padding: 0;
}

.bg-image {
  background-image: url('https://images.unsplash.com/photo-1506470905961-b902cdccdca2');
  background-size: cover;
  background-position: center;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.content {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

h1 {
  font-size: 4rem;
  margin-bottom: 2rem;
}

p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

button {
  padding: 1rem 2rem;
  background-color: #EBF0F9;
  color: #868E96;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
