/**
 * @file
 * This file is used to style the footer.
 *
 * It styles the footer as a global component; it does not style individual
 * footer items, such as a menu, which are styled by their own CSS files.
 */

.footer {
  padding: 2rem 1rem;
  color: #722424;
  background-color: #FFE4E1;
  font-size: 0.9rem;
  align-items: center;
  text-align: center;
}

@media screen and (min-width: 60rem) {
  .footer {
    padding: 1rem 1rem 0;
    text-align: left; /* LTR */
  }
  [dir="rtl"] .footer {
    text-align: right;
  }
  .region-footer {
    display: flex;
    justify-content: space-between;
  }
}


.footer a:active,
.footer a:focus,
.footer a:hover {
  outline-color: #722424;
  background-color: #FFE4E1;
}

  .layout-footer {
    padding: 2em;
    color: #722424;
    background: #FFE4E1;
    font-family: "Open Sans", Verdana, sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
    border-top-color: #722424;
    border-top-style: solid;
    border-top-width: 2px;
    align-items: center;
    text-align: center;
    }

  .region-footer {
    display: block;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    text-align: center;
    align-items: center;
    }

  .footer a {
    color: #76A5AF;
    text-decoration: dotted;
    font-weight: 400;
  }


