/* styles.css */
body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  height: 100vh;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.logo {
  width: auto;
}

.home {
  width: 100%;
}

.footer {
  display: flex;
  justify-content: space-between;
  width: 50%;
  margin-bottom: 10px;
}
