body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f3f3f3;
}
.container {
  text-align: center;
}
.image-container {
  position: relative;
  display: inline-block;
}
.logo {
  width: 1000px;
  max-width: 100%;
  margin-bottom: 20px;
}
.overlay-text {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 2em;
  background-color: rgba(
    0,
    0,
    0,
    0.5
  ); /* Optional: add a semi-transparent background */
  width: 100%;
  text-align: center;
  padding: 10px 0;
}
p {
  font-size: 1.2em;
  color: #555;
}
