@font-face {
  font-family: "fa_xcczcfncowregular";
  src: url("fa_xcczcfncow-webfont.woff2") format("woff2"),
    url("fa_xcczcfncow-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: content-box;
  width: 100%;
  background-image: url(blogbg.jpg);
  background-repeat: repeat;
  background-attachment: fixed;
}

p {
  font-family: helvetica;
  color: black;
  font-size:15px;
}

main {
  text-align: center;
}

.wrapper {
  display: flex;
  flex-flow: row wrap;
}

#front {
  display: flex;
  flex-direction: column;
}

.dashboard {
  margin-left: 30px;
  outline: black 1px solid;
  background-color: #000000c7;
  width: 70%;
  margin-bottom: 5%;
}

h3 {
  color: black;
  font-size: 50px;
  text-align: right;
  margin: 0;
}

h4 a {
  color: black;
  font-size: 20px;
  text-align: left;
  font-family: "fa_xcczcfncowregular";
}

.container {
  display: flex;
  outline: black 1px solid;
  flex-direction: column;
  text-align: left;
}

p {
  color: white;
  line-height: 1.8;
  text-align: left;
  white-space: wrap;
  padding-left: 10px;
  outline: white 1px solid;
  line-height: 22px;
}

.button {
  width: 88px;
  font-size: 10px;
  background-color: black;
  color: black;
  height: 21px;
  margin-bottom: 10px;
}

.link {
  align-items: center;
  list-style: none;
  font-family: helvetica;
  line-height: 20px;
  font-size: 15px;
  padding: 0px 15px 0px 15px;
}

#scroll-container {
  border: 1px solid black;
  border-radius: 2px;
  overflow: hidden;
  height: 29px;
  display: flex;
  flex-direction: row;
  -webkit-box-shadow: 0px 0px 10px 3px #000;
  position: fixed;
}

#scroll-text {
  text-align: right;

  /* animation properties */
  -moz-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);

  -moz-animation: my-animation 15s linear infinite;
  -webkit-animation: my-animation 15s linear infinite;
  animation: my-animation 15s linear infinite;
}

/* for Firefox */
@-moz-keyframes my-animation {
  from {
    -moz-transform: translateX(-100%);
  }
  to {
    -moz-transform: translateX(100%);
  }
}

/* for Chrome */
@-webkit-keyframes my-animation {
  from {
    -webkit-transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(100%);
  }
}

@keyframes my-animation {
  from {
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  to {
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
