* {
    box-sizing: border-box;
}
::-moz-selection {
    background: #F34A4E;
    color: #FFF;
}
::selection {
    background: #F34A4E;
    color: #FFF;
}
html, body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    font-size: 1em;
    line-height: 1.5;
    color: #242424;
    background: #ccc;
}

.sr-only {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute;
    height: 1px;
    width: 1px;
    overflow: hidden;
}
.main-header {
    background: #CCC;
    box-shadow: 0 1px 6px rgba(0,0,0,.1);
}
.mh-logo {
    margin: 0 0 -10px;
}
.main-nav a {
    font-size: 0.75em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #343534;
    text-decoration: none;
   background-color: #FFF;
   border-radius: 5px;
}
.main-nav a:hover{
    background-color: #ccc;
}
.main-nav ul {
    margin: 0;
    padding: 0;
}

.center {
    margin-top: 4em;
    text-align: center;
}
.center a {
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: #F34A4E;
    border-bottom: 1px solid #F34A4E;
    transition: all .275s;
}
.center a:hover,
.center a:focus {
    opacity: 0.8;
    padding-bottom: 2px;
    border-bottom-color: rgba(243, 74, 95, .5);
}
main{
    background-color: #FFF;
}
footer{
    color: #747474;
    border-top:1px solid #ccc;
}
/* LINKS: https://codepen.io/team/css-tricks/pen/xxPOgmZ */
a {
  color: #6a9700;
  position: relative;
  text-decoration: none;
}

a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background-color: #6a9700;
  bottom: 0;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .3s ease-in-out;
}

a:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

/**
 * Flex & layout things:
 * — Mobile first
 * — Responsive
 */
img {
    max-width: 100%;
    height: auto;
}
.container {
    width: 960px;
    max-width: 100%;
    padding: 20px;
    margin: 0 auto;
}
.main-header .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}
.main-nav ul {
    margin: 1em 0 .5em;
    text-align: center;
}
.main-nav li {
    display: inline;
}
.main-nav a {
    display: inline-block;
    padding: .5em 1.5em;
}

@media (min-width:960px) {
    .main-header .container {
        justify-content: space-between;
    }
}

/* FLEXBOX: Columns */
.flexcols {
  display: flex;
  gap: 1rem; /* space between columns */
}
.column-left {
  width: 250px; /* fixed width for the first column */
  flex-shrink: 0; /* prevents shrinking */
}
.column-right {
  flex: 1; /* fills the remaining space */
}
/* Optional responsive stacking */
@media (max-width: 768px) {
  .flexcols {
    flex-direction: column;
  }
  .column-left {
    width: 100%; /* full width on small screens */
  }
}

.spaced-list li{
    margin-bottom:1em;
}