* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
  background-color: #f9fafb;
  color: #333;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  padding: 20px;
}

.content {
  max-width: 700px;
}

h1 {
  font-size: 3em;
  margin-bottom: 20px;
  color: #ff6b6b;
}

p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.loader {
  width: 40px;
  height: 40px;
  border: 5px solid #ddd;
  border-top: 5px solid #ff6b6b;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
