body {
  margin: 0;
  margin-top: 10px;
  background-color: #eeeae4;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80%;
}

.container {
  max-width: 70%;
  max-height: 70%;
  overflow: hidden;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 4s ease-in-out forwards;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
