/* Header Styles */
header {
  height: 100vh;
  width: 100vw;
  position: relative;
  display: flex;
  background-color: black;
}

.header-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 800px;
  text-align: center;
  color: #ffffff;
  padding: 16px;
  border-radius: 8px;
}

.hero {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero img {
  max-width: 100%;
  max-height: 100%;
}
