@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

body {
  font-family: 'Open Sans', sans-serif;
}

header {
  display: block;
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding-top: 15px;
  padding-bottom: 15px;
}

#logo-text {
  font-size: 20pt;
  font-weight: 600;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  color: #2880ac;
  text-transform: uppercase;
}

main {
  display: block;
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding-top: 50px;
  padding-bottom: 50px;
  background: #bbe3bb;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
}

main #intro-text h1 {
  font-size: 24pt;
  font-weight: 700;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 15px;
  padding-top: 0;
  padding-bottom: 0;
  color: #333;
  text-transform: uppercase;
}

main #intro-text p {
  font-size: 14pt;
  font-weight: 400;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  color: #333;
}

section {
  display: block;
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 215px;
  margin: 0;
  padding-top: 30px;
  padding-bottom: 30px;
  background: #eee;
}

#affordable-housing,
#food-stamps,
#liheap {
  margin-top: 15px;
  margin-bottom: 15px;
  transition: all 0.2s ease-in-out;
  border-radius: 15px;
  cursor: pointer;
}

#affordable-housing:hover,
#food-stamps:hover,
#liheap:hover {
  transform: scale(1.05);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.benefit-image {
  margin: 0;
  padding: 0;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.benefit-image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.benefit-description {
  background: #fff;
}

.benefit-description h2 {
  font-size: 16pt;
  font-weight: 600;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  color: #2880ac;
  text-transform: uppercase;
}

.benefit-description h3 {
  font-size: 16pt;
  font-weight: 600;
  line-height: 1;
  margin-top: 10px;
  margin-bottom: 15px;
  padding-top: 0;
  padding-bottom: 0;
  color: #333;
}

.benefit-description p {
  font-size: 13pt;
  font-weight: 300;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.benefit-button {
  background: #259bd5;
  color: #fff;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  font-size: 18pt;
}

footer {
  margin: 0 auto;
  padding-top: 15px;
  padding-bottom: 15px;
  background: #333;
  color: #fff;
}

footer p {
  font-size: 10pt;
  font-weight: 300;
  line-height: 1.5;
  margin-top: 5px;
  margin-bottom: 5px;
  padding-top: 0;
  padding-bottom: 0;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:focus,
footer a:hover {
  color: #eee;
  text-decoration: underline;
}