body {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  font-family: 'Kanit', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.text p {
  font-size: 1.8em;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: #000;
}

.logo img.animated-logo {
  width: 120px;
  height: 120px;
  animation: animateColor 4s infinite alternate ease-in-out;
}

@keyframes animateColor {
  0% {
    filter: none;
  }
  100% {
    filter: brightness(0) saturate(100%) invert(0);
  }
}

.email {
  margin-top: 30px;
  font-size: 0.95em;
  color: #444;
  border-top: 1px solid #ccc;
  padding-top: 10px;
  width: 100%;
  max-width: 300px;
}

.email a {
  color: #444;
  text-decoration: none;
}

.email a:hover {
  color: #000;
}
