html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
}

.logo {
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  max-width: 100%;
  height: auto;
}

footer {
  text-align: center;
  padding: 10px;
  background-color: #f0f0f0;
}

footer a {
  color: black;
  text-decoration: none;
}

footer a:hover {
  color: darkorange;
  text-decoration: underline;
}

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

/* Additional Styles */
.content {
  margin: 20%;
}

h2 {
  font-weight: bold;
  text-decoration: none;
}

h3 {
  font-size: 1em; /* same size as normal text */
  font-weight: bold;
  line-height: 1.6; /* typical line height for paragraph text */
  margin: 0; /* remove default margins */
}

a {
  color: orangered;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
