@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  font-family: "Outfit", sans-serif;
  color: #333;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  width: 100%;
}

.logo-icon {
    max-width: 90%;
    width: 150px;
    height: auto;
    object-fit: contain;
}

.logo-text {
    max-width: 90%;
    width: 600px;
    height: auto;
    object-fit: contain;
}

footer {
    width: 100%;
    padding: 1.5rem;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
}

.footer-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #333;
}

.footer-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

@media (min-width: 768px) {
  main {
    gap: 4rem;
  }

  .logo {
    width: 400px;
  }

  .logo-text {
    width: 800px;
  }
}
