h1 {
  color: black;
  text-align: center;
  font-size: 40px;
  font-weight: 900;
  margin: 2% auto 5% auto;
  width: 95%;
  animation: heading-fade 5s infinite;
}

.container {
  max-width: 350px;
  padding: 5px 0 10px 0;
  border-radius: 10px;
  margin: 0 auto;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease, scale 0.3s ease;
  width: 90%;
}

.container:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

@keyframes heading-fade {
  0% {
    opacity: 0.9;
    scale: 1;
  }
  50% {
    opacity: 0.6;
    scale: 1.03;
  }
  100% {
    opacity: 0.9;
    scale: 1;
  }
}

.branding {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  position: absolute;
  bottom: 0;
  right: 0;
  color: white;
  font-size: 10px;
  margin: 0;
  padding: 0 15px 10px 0;
  animation: branding-fade 10s both infinite;
}

@keyframes branding-fade {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0.4;
  }
}

p {
  text-align: center;
  color: black;
  font-size: 12px;
  font-weight: 600;
}
