body {
  margin: 0;
  background-color: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.container {
  width: 300px;
  height: 300px;
  background-color: black;
  padding: 20px;
  box-sizing: border-box;
}

.container img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
}

.coming-soon {
  font-size: 1.125rem;
  color: white;
  margin-top: 1rem;
}

footer {
    color: lightblue;
    font-size: 0.75rem;
    margin-top: 10px;
    font-family: sans-serif;
    text-align: center;
}