/* Center everything vertically and horizontally for main header */
.centered-container {
  display: flex;
  justify-content: center; /* vertical center */
  align-items: center;     /* horizontal center */
  text-align: center;
  height: 100vh;
  flex-direction: column;
  gap: 20px;
}

/* Big header */
.centered-container h1 {
  font-size: 5rem; /* large text */
  margin: 0;
  color: #dedfd6;  /* light text */
}

/* Bottom links container */
.bottom-links {
  position: fixed;
  bottom: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 40px; /* space between links */
  text-align: center;
}

/* Links style */
.bottom-links a {
  color: #dedfd6;
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.bottom-links a:hover {
  color: #958831; /* hover color */
}
