body,
html {
  margin: 0;
  padding: 0;
  font-family: monospace;
  box-sizing: border-box;
  font-size: 1rem;
}

.a {
  text-decoration: none;
  color: #007bff;
}

.a:hover {
  text-decoration: underline;
}

/* Container for Layout */
.header {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  text-align: left;
  padding: 20px;
  background-color: white;
  overflow: hidden;
}

.logo img {
  height: 200px; /* Adjust logo height */
  margin: 20px;
  padding: 20px;
  float: left;
}

.details {
  display: flex;
  flex-direction: row;
  padding: 20px;
}

.account {
  display: flex;
  flex-direction: row;
  padding: 20px;
  margin: 20px;
}
.banner {
  text-align: center;
  padding: 20px;
}

@media only screen and (min-width: 768px) {
  body {
    flex-direction: column;
    text-align: center;
  }
}

.footer {
  text-align: center;
  padding: 10px 0;
  background-color: #007bff;
  color: white;
  font-size: 20px;
  position: relative;
  bottom: 0;
  width: 100%;
}
