html, body {
    height: 100%;
    margin: 0;
    padding: 0;
  }
  
a {
    color: #005F73;
  }

a:hover {
    color: #005F73;
  }

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
  }
  
.content {
    flex: 1;
    overflow: auto;
  }
  
.footer {
    background-color: dark;
    position: fixed;
    width: 100%;
    bottom: 0;
  }

input[type=text], input[type=email], textarea {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
  }

.footer-icons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* padding-left: 100px; */
  }

.footer-icons a {
    margin-right: 10px;
    font-size: 200%;
  }

.featured-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
  }

.featured-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  }

.square-cropped-image {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
  }

.square-cropped-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  }
