body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: Arial, sans-serif;
}

footer {
  width: 100%;
  /* background: linear-gradient(to top, #0d1b2a, #1b263b); */
  color: #b3d9ff;
  padding: 30px 20px;
  position: relative;
  text-align: center;
}

.footer-container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-container {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.whale-logo {
  width: 200px;
  height: auto;
  margin-bottom: 10px;
}

.whale-logo img {
  width: 100%;
  height: auto;
}

.caption {
  color: #b3d9ff;
  font-size: 1.5em;
  text-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
  margin: 0;
}

.social-media {
  margin: 20px 0;
  display: flex;
  justify-content: center;
}

.social-media a {
  margin: 0 10px;
  color: #b3d9ff;
  font-size: 1.5em;
  transition: transform 0.3s, color 0.3s;
}

.social-media a:hover {
  color: #00bfff;
  transform: scale(1.2);
}

.footer-text {
  margin: 10px 0;
  font-size: 0.9em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.footer-links a {
  margin: 0 10px;
  color: #b3d9ff;
  text-decoration: none;
  transition: color 0.3s;
}

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

.newsletter {
  margin: 20px 0;
}

.newsletter input[type="email"] {
  padding: 10px;
  border: none;
  border-radius: 5px;
  margin-right: 10px;
  font-size: 1em;
}

.newsletter button {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
}

.newsletter button:hover {
  background-color: #0056b3;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 10px 15px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: none;
}

.back-to-top:hover {
  background-color: #0056b3;
}
