/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Helvetica', sans-serif; /* Use Helvetica font */
}

body {
  background: linear-gradient(to right, #ff7f50, #ff007f); /* Gradient from orange to hot pink */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: white; /* Make text white */
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3); /* Add subtle text shadow for better readability */
}

.container {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent background */
  padding: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  max-width: 80%;
}

h1 {
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 1px;
}

p {
  font-size: 22px;
  color: #fff; /* Ensuring text is white */
  margin-bottom: 25px;
  line-height: 1.5;
  font-weight: 300; /* Lighter font weight for better flow */
}

.note {
  font-size: 18px;
  color: #fff;
  font-style: italic;
}

@media (max-width: 600px) {
  .container {
    padding: 30px;
  }

  h1 {
    font-size: 36px;
  }

  p {
    font-size: 18px;
  }
}
