*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  background-origin: border-box;
}

a {
  text-decoration: none;
  color: #6fd7df;
}

body {
  font-family: open sans, Helvetica, Arial, sans-serif;
  background-image: linear-gradient(0deg, #00549a 0%, #015385 100%);
}

.root {
  min-height: 100vh;
  /* max-width: 1150px; */
  padding-bottom: 30px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.root > header {
  height: 65px;
  padding: 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
}

.root > main {
  flex-grow: 1;
  /* background-color: wheat; */
  /* background-image: url("./images/Banner.jpg"); */
  background-repeat: no-repeat;
  background-size: contain;
  /* background-position: -2px; */
  padding: 100px;
  text-align: center;
  display: flex;
  gap: 3rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  margin-bottom: 200px;

  @media screen and (max-width: 600px) {
    padding: 20px;
  }
}

.root main p {
  font-size: 1.2rem;
  line-height: 1.5em;
}

address {
  line-height: 2em;
}

address dd a {
  line-height: 1.5em;
  font-size: 0.9rem;
  text-decoration: underline;
}

address dd:hover {
  filter: brightness(1.3);
}

.root img {
  object-fit: contain;
  /* max-height: 40px; */
}

.root > footer {
  margin: auto;
  text-align: center;
  color: white;
}
