body {
  margin: 0;
  padding: 0;
  background: #5dbdcd;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.logo-wrapper {
  position: relative;
  text-align: center;
}

.logo-img {
  width: 80%;
  max-width: 1000px;
  height: auto;
  /* animation removed */
}

.tagline {
  position: absolute;
  bottom: 45%; /* sweet spot */
  left: 50%;
  transform: translateX(-50%);
  
  font-family: 'Noto Serif Ethiopic', serif;
  font-size: 1rem;
  color: #ffde59;
  text-shadow: 0px 1.5px 3px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  /* animation removed */
}

@media (max-width: 600px) {
  .tagline {
    font-size: 0.9rem;
    bottom: 30%;
    white-space: normal;
    width: 80%;
  }
}
