body {
  background-color: #F9FAFC;
}

.brand {
  font-family: Lato, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #4A4A4F;
}

.red-o {
  color: #E84610;
}

.thin {
  font-weight: 300;
}

.light-bg {
  background-color: #fff;
}

.dark-bg {
  background-color: #445261;
  padding: 0.5em;

  position:relative;

  left:0px;

  bottom:0px;

  width:100%;
}

.main-bg {
  background-color: #F9FAFC;
}

.card {
  border: none;
  background-color: transparent;
}

.image-container {
  position: relative;
}

.image-flash {
  position: absolute;
  bottom: 5%;
  min-width: 30%;
  left: -2px;
  background-color: #23BBBB;
}

.author {
  color: white;
  margin: 4px;
  text-transform: uppercase;
}

.masthead {
  margin-top: 10px;
  overflow: hidden;
  position: relative;
  display: inline-block;
  height: 33vh;
  width: 100%;
}

.masthead-text {
  background-color: #445261;
  color: white;
  position: relative;
}

.masthead-image {
  position: relative;
  overflow: hidden;
}

.masthead-image:after {
  content: "";
  position: absolute;
  top: 0;
  right: 90%;
  height: 100%;
  width: 150%;
  background: #445261;
  -webkit-transform: skew(15deg);
  -moz-transform: skew(15deg);
  transform: skew(15deg);
  z-index: 100;
}

.post-link {
  text-decoration: none;
  color: #445261;
}

.post-link:hover,
.page-link {
  color: #E84610;
}

.post-title {
  margin-top: 20%;
  margin-left: 5%;
}

.post-subtitle {
  margin-left: 5%;
  color: lightgray;
}

.btn-signup {
  background-color: #23BBBB;
  color: #fff;
}

.btn-signup:hover,
.btn-signup:active {
  background-color: #fff;
  color: #23BBBB;
}

.link {
  color: #23BBBB;
  text-decoration: none;
}

.link:hover,
.link:active {
  color: #445261;
  text-decoration: underline;
}

.btn-like {
  color: #E84610;
  border: none;
  background: transparent;
}

.btn-like:hover,
.btn-like:active {
  color: #E84610;
  background: transparent;
  border: none;
}

.flex-parent {
  display: flex;
  justify-content: center;
  align-items: center;
}

.box {
  background-color:#807b00;
  margin: 0vw;
  padding: 3vw;
}

.answer {
  display: none;
}

.checkmark {
  display: inline-block;
  transform: rotate(45deg);
  height: 25px;
  width: 12px;
  margin-left: 60%; 
  border-bottom: 7px solid #78b13f;
  border-right: 7px solid #78b13f;
}

.zoom-in-out-box {

  animation: zoom-in-zoom-out 5s ease infinite;
  border-radius: 0.5rem;
}

@keyframes zoom-in-zoom-out {
  0% {
    scale: 100%
  }
  50% {
    scale: 120%;
  }
  100% {
    scale: 100%;
  }
}

a:hover, a:visited, a:link, a:active
{
    text-decoration: none;
}