/*header*/
.header {
  position: fixed;
  right: 0;
  top: 0;
  width: 70%;
  height: 3em;
  background-color: white;
  color: black;
  border: solid;
  border-width: 0.8px;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  z-index: 10;
  -webkit-box-shadow: 3px 10px 32px -4px rgba(0,0,0,0.75);
  -moz-box-shadow: 3px 10px 32px -4px rgba(0,0,0,0.75);
  box-shadow: 3px 10px 32px -4px rgba(0,0,0,0.75);
}
.header p{
  display: inline-block;
  padding-left: 100%;
  animation: marquee 600s linear infinite;
  font-size: 17px;
  margin-top: 8px;
}

.header a,
.header i{
  font-size: 17px;
}

@keyframes marquee {
  0%   { transform: translate(0, 45); }
  100% { transform: translate(-100%, 0); }
}

/* MOBILE-FRIENDLYYYY - Landscape though */
@media (max-width: 812px) {
  .header{
      width: 90%;
      height: 10%;
      padding-bottom: 5px;
  }

  .header p,
  .header a,
  .header i{
    font-size: 12px;
  }
}

@media (min-width: 1920px) and (max-width: 2560px)  {
  .header{
    width: 70%;
    height: 6%;
    padding-bottom: 0px;
  }

  .header p,
  .header a,
  .header i{
    font-size: 30px;
  }
}