body.main {
  background-color: black;
  color: white;
}

blockquote {
  border-left: 0.125rem solid #ffffff;
}

.open-sans-italic-800 {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: italic;
  font-variation-settings:"wdth" 100;
  padding-right: 1rem;
}

.open-sans-thin {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings:"wdth" 100;
}

img.sprite {
  float: right;
  width: 50%;
  animation: fadeIn 2s;
}

.header-links>.btn-outline-light{
  padding-inline: 1rem;
}

.navbar-toggler-icon.white-toggler{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(192,192,192,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/*Most Phones*/
@media screen and (max-width:600px) {
  img.sprite {
    width: 100%;
  }
}

/*Animation*/
@keyframes fadeIn {
  0% { 
    opacity: 0;
    margin-top: 2rem;
  }
  100% { 
    opacity: 1;
    margin-top: 0rem;
  }
}