/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Comic Sans MS', cursive, sans-serif;
  background: #03414c;
  color: #ffffff;
  text-align: center;
  padding: 2rem;
}

header {
  background-color: #73dfd0;
  color: #03414c;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  margin-bottom: 2rem;
}

header img {
  max-width: 100%;
  height: auto;
}

.title-img {
  max-width: 100%;
  height: auto;
  margin-top: 1rem;
}


.logo {
  width: 100px;
  height: auto;
  margin-bottom: 1rem;
  animation: spin 6s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}

.tagline {
  font-size: 1.3rem;
  font-style: italic;
}

.wip {
  background: rgba(115, 223, 208, 0.15);
  border: 2px dashed #73dfd0;
  border-radius: 15px;
  padding: 2rem;
  margin: 1rem auto;
  max-width: 600px;
}

.follow a {
  color: #73dfd0;
  text-decoration: none;
  font-weight: bold;
}

.follow a:hover {
  text-decoration: underline;
  color: #ffffff;
}

footer {
  margin-top: 3rem;
  font-size: 0.9rem;
  opacity: 0.7;
}
