body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 40px;
  color: #333;
  background-color: #a0e1f1;
}
.top-banner
{
    text-align: center;
    margin: 0;
    padding:0;
    width: 100%;
    height: auto;
    display: block;
}
h1, h2 {
  margin-bottom: 10px;
}
article {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}
.section.reverse {
  flex-direction: row-reverse;
}
.text {
  flex: 1;
  padding: 20px;
}
.image {
  width: 250px;
  height: 250px;
  background-color: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #888;
  font-size: 16px;
}
footer {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
}
a {
  text-decoration: none;
  color: #333;
}
a:hover {
  text-decoration: underline;
}