* {
  font-family: Helvetica, sans-serif;
  line-height: 1.6;
  font-size: 16px; /* Readable font size */
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #fcfcfc; /* Light background */
}

header {
  background: linear-gradient(to right, #00E1FF, #00b8ff); /* Gradient background */
  color: white;
  padding: 15px 20px;
  text-align: center;
  border-bottom: 0.5px solid #ccc;
}

header h1 {
  margin: 0;
  font-size: 42px;
}

header h2 {
  margin: 5px 0 0;
  font-size: 18px;
  font-weight: normal;
}

header h3 {
  margin: 5px 0 0;
  font-size: 18px;
  font-weight: lighter;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: center;
  padding: 20px;
  max-width: 600px; /* Set the maximum width to 600px */
  margin: 0 auto; /* Center the content */
  background: #fcfcfc; /* Light background */
  color: #414863; /* Dark text color for contrast */
  border-radius: 4px; /* Rounded corners for the content box */
  /* Removed box-shadow */
  text-align: center; /* Center the text */
}

.content p {
  margin: 0 0 20px; /* Spacing between paragraphs */
  line-height: 1.6; /* Line height for better readability */
}

.carousel {
  width: 88px; /* Adjust width to match emoji height */
  height: 88px;
  overflow: hidden;
  margin: 20px 0;
  position: relative;
  display: inline-block; /* Ensure proper spacing */
  padding-bottom: 24px;
}

.carousel div {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 88px; /* Adjust emoji size */
  transition: opacity 1s ease-in-out;
}

.carousel div:not(:first-child) {
  opacity: 0;
}

.email-button {
  background-color: #00b8ff;  /* Background color */
  font-weight: bold;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  margin-top: 30px;
}

.email-button:hover {
  background-color: #00a2ff;  /* Hover color */
  transition: background-color 0.1s;
}

.email-button-link {
  text-decoration: none;
  color: white;
}

footer {
  background: #fcfcfc; /* Light background */
  color: black;
  height: 40px;
  display: flex;
  justify-content: flex-end; /* Align content to the right */
  align-items: center;
  padding: 10px 20px; /* Added padding for better spacing */
  font-size: 10px; /* Set the font size to 10px */
  border-top: 0.5px solid #ccc;
}

footer span {
  margin-left: auto; /* Push copyright text to the right */
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 600px) {
  .email-button {
    width: 100%;
    font-size: 14px;
    padding: 10px 0;
  }
  footer {
    padding: 10px; /* Adjust padding for small screens */
  }
  footer span {
    margin-left: 0; /* Remove margin-left on smaller screens */
    text-align: right; /* Align text to the right */
    width: 100%; /* Make footer take full width */
  }
}
