body {
  font-family: "Calibri", Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5ecdd;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}
.max-width {
  max-width: 1000px;
}

.header {
  background-image: url("https://waterschools.org/email/image-12.png");
  background-repeat: no-repeat;
  background-position: center top;
  text-align: center;
  color: #121212;
  padding: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (max-width: 600px) {
  .header {
    margin-top: 45px;
  }
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 550px;
}

.logo {
  max-width: 50px;
}

.header-text {
  text-align: left;
}

.header-text h1 {
  font-size: 31px;
  font-weight: 600;
  margin: 0;
}

.header-text p {
  font-size: 16px;
}

.header-image {
  max-width: 120px;
}

.body {
  background-color: #f5ecdd;
  padding: 30px;
  text-align: left;
  font-size: 16px;
  line-height: 1.6;
  max-width: 550px;
}

.responsive-image {
  width: 100%;
  height: auto;
  margin: 20px 0;
}

.footer {
  background-color: #333333;
  color: white;
  text-align: center;
  padding: 20px 40px;
  font-size: 16px;
  width: 100%;
}

.footer a {
  color: #2fc5fa;
  text-decoration: none;
}

.footer-links {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin: 20px 5vw;
  flex-wrap: wrap;
}

.footer-logo {
  max-width: 25px;
}

.footer-logo-large {
  max-width: 110px;
}

.footer-note {
  font-size: 11px;
  color: #cccccc;
}
.two-col {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.two-col > * {
  flex: 1;
  padding: 10px;
  box-sizing: border-box;
}

.news-strip {
  display: flex;
  justify-content: center;
  background-color: #dfe7f6;
  width: 100%;
}
.max-width {
  display: flex;
  width: 100%;
  max-width: 1000px;
  justify-content: flex-end;
}
.news-strip p {
  margin: 0;
  color: #365b6d;
  padding: 10px 20px;
  font-size: 1.1em;
  font-style: oblique;
  font-weight: 500;
  margin-right: 100px;
}
.news-strip a:has(img) {
  position: absolute;
}
.news-strip a img:hover {
  animation: ripple 0.6s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  80% {
    transform: scale(1.1) rotate(3deg);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
