/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
}

/* Splash screen styles */
.splash {
  background-color: #1e1e2f;
  color: white;
  height: 100%;
  max-width: 100vw;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  animation: fadeIn 2s ease-in-out;
}

.logo {
  font-size: 2.5rem;
  animation: popIn 1.5s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes popIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.photo {
  animation: popInPhoto 2.5s ease forwards;
  opacity: 0;
  max-height:80vh;
}

@keyframes popInPhoto {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }
  100% {
    transform: scale(0.9);
    opacity: 1;
  }
}

/* Mobile styles: stack images vertically under 1024px */
@media (max-width: 1024px) {
  .splash {
    display: flex;
    flex-direction: column;
	overflow:hidden;
  }
  .logo {
	margin-top:30px;
  }
}
