/* Reset / Normalize */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #5c524e;
  color: #fff;
  line-height: 1.7;
}


/* Layout */

.container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14vw;
  gap: 6vw;
}


/* Logo */

.logo-area img {
  max-width: 420px;
  width: 100%;
  height: auto;
}


/* Text */

.content {
  max-width: 420px;
  font-size: 12px;
}

.content p {
  margin-bottom: 1.6rem;
}

.intro {
  font-weight: 500;
}

.email a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;

  transition: border-color 0.25s ease, opacity 0.25s ease;
}


.email a:hover {
  border-color: currentColor;
}


/* Responsive */

@media (max-width: 900px) {

  .container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
    padding: 10vw 8vw;
  }

  .logo-area img {
    max-width: 300px;
  }

  .content {
    font-size: 12px;
  }

}



/* Animation */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply animation to both elements */

.logo-area,
.content {
  opacity: 0;
  animation: fadeIn 0.9s ease-out forwards;
}

@media (prefers-reduced-motion: reduce) {
  .logo-area,
  .content {
    animation: none;
    opacity: 1;
  }
}