/* styles.css */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  background-color: rgb(0, 0, 0);
}

a,
a:visited {
  color: rgb(255, 255, 255);
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  text-align: center;
}

header {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  max-width: 300px;
  max-height: 300px;
  width: auto;
  height: auto;
}

footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  font-size: 0.9em;
}

footer p {
  margin: 5px 0;
}

@media (max-width: 768px) {
  .logo {
    max-width: 80%;
    max-height: 80%;
  }

  footer {
    font-size: 0.8em;
  }
}
