/* styles/styles.css */

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: sans-serif;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  box-sizing: border-box;
  max-width: 100vw;
}

.logo {
  max-width: 90vw;
  max-height: 90vh;
  width: 1500px;
  height: auto;
  object-fit: contain;
}

.text {
  margin-top: 1.5rem;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .text {
    font-size: 1rem;
  }
}
