html {
  height: 100%;
  width: 100%;
}
body {
  height: 100%;
  width: 97%;
  background-color: blanchedalmond;
  display: flex;
  flex-direction: column;
  gap: 2.5%;
}

header {
  height: 15%;
  width: 97%;
  background-color: blue;
  align-items: center;
  padding: 5px 15px 5px 5px;
  display: flex;
  justify-content: center;
  color: white;
}
main {
  height: 70%;
  width: 98%;
  color: black;
  display: flex;
  gap: 5%;
  padding-left: 10px;
}
.account {
  height: 95%;
  width: 45%;
  padding-left: 10px;
  border: 2px solid green;
}
.contact {
  height: 95%;
  width: 45%;
  padding-left: 10px;
  border: 2px solid green;
}
footer {
  height: 10%;
  width: 97%;
  background-color: blue;
  align-items: center;
  padding-left: 20px;
  color: white;
  display: flex;
  gap: 5%;
}
footer h4 img {
  height: 30%;
}
footer a {
  color: white;
  text-decoration: none;
}
.next {
  height: 30px;
  width: 150px;
}
p {
  width: 70%;
}
.account h2 {
  text-decoration: underline;
}
