@font-face {
  font-family: 'Quicksand';
  src: url('fonts/Quicksand-Regular.woff2') format('woff2'),
       url('fonts/Quicksand-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Quicksand';
  src: url('fonts/Quicksand-SemiBold.woff2') format('woff2'),
       url('fonts/Quicksand-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}

html, body {
  height: 100%;
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  background-color: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #333;
}

.message {
  max-width: 600px;
  padding: 2rem;
  border-radius: 1rem;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.message h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.message p {
  font-size: 1.2rem;
  line-height: 1.6;
}
