body {
  margin: 0;
  padding-left: 40px;

  min-height: 100vh;

  display: flex;
  justify-content: flex-start;
  align-items: center;

  font-family: "Short Stack", cursive;
  background-image: url("kanyebg.png");
  background-size: cover;
  background-repeat: no-repeat;

  background-position: center 10%; 
  color: #1E3A8A;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;         

  width: 90%;
  max-width: 500px;
}

.top-image {
  width: 250px;
  height: auto;
  display: block;
}

.floating-img {
  position: fixed;
  bottom: 30px;
  right: 30px;

  width: 30vw;       /* scales with screen */
  max-width: 200px;  /* stops it getting huge */
  min-width: 120px;   /* stops it getting tiny */

  height: auto;

  z-index: 9999;
}

.sign-text {
  width: 90%;
  max-width: 500px;
  padding: 12px;

  color: white;

  text-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

.sign-text p {
  text-align: justify;
  line-height: 1.5;
}

/* links */
a {
  color: inherit;
  text-decoration: underline;

  transition: 
    transform 0.2s ease,
    letter-spacing 0.2s ease,
    opacity 0.2s ease,
    text-shadow 0.2s ease;
}

.sign-text a:hover {
  transform: scale(1.05) translateY(0px);
  letter-spacing: 1px;
  opacity: 0.75;
}

#rotating-text {
  margin-top: 20px;
  padding-top: 10px;

  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.3;

  border-top: 1px solid rgba(0,0,0,0.2);
opacity: 0.8; transition: opacity 0.5s ease-in-out; }

#fade-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999;
  pointer-events: none;
  opacity: 1;
  transition: opacity 1.5s ease;
}

#fade-overlay.fade-out {
  opacity: 0;
}

/* mobile tweaks */
@media (max-width: 600px) {
  .container.shifted {
    transform: translateY(-10vh);
  }

  .sign-text p {
    font-size: 0.9rem;
  }
}