body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(to bottom right, #1e3c72, #2a5298);
  color: #fff;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo at the top */
header {
  margin-top: 30px;
}

.logo {
  height: 80px; /* adjust logo size */
  margin-bottom: 20px;
}

/* Main container */
.container {
  max-width: 900px;
  padding: 20px;
  margin-top: 40px;
}

/* Headline */
h1 {
  font-size: 3.2rem; /* increased font size */
  margin-bottom: 25px;
}

/* Paragraph */
p {
  font-size: 1.4rem; /* increased font size */
  line-height: 1.8;
  margin-bottom: 50px;
}

/* Button with animation */
button {
  padding: 18px 50px;
  background: #ff6600;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  animation: pulse 2s infinite;
  transition: background 0.3s ease;
}

button:hover {
  background: #e65c00;
}

/* Pulse animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.7);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px 10px rgba(255, 102, 0, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 102, 0, 0);
  }
}