/* General Page Styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}

/* Logo Header */
header {
  position: absolute;
  top: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
}

header img {
  height: 40px;
}

/* Content Container */
.content {
  padding-top: 100px;
}

/* Main Heading */
.main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

/* Subtext (paragraph below heading) */
.subtext {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

/* Bounce Animation Keyframes */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Apply Animation to Image */
.bouncy-image {
  max-width: 500px;
  width: 100%;
  animation: bounce 2s ease-in-out infinite;
}

.footer {
  position: fixed;
  bottom: 10px;
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
}