body {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  background: #fff;
  text-align: center;
}

header {
  margin-top: 30px;
}

.animated-logo {
  width: 100px;
  height: auto;
}

.timestamp {
  font-size: 10px;
  margin-top: 5px;
}

.preview-bar {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 10px;
}

.preview-bar a img {
  width: 300px;
  height: 533px;
  object-fit: cover;
  transition: transform 0.3s;
}

.preview-bar a:hover img {
  transform: scale(1.05);
}

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

.gallery img {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin-bottom: 20px;
}