@import url("https://fonts.googleapis.com/css?family=Montserrat:400,400i,700");

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  background-color: #1b557a !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%233498db' fill-opacity='0.45'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  animation: marquee 30s infinite linear;
}
.hero h1, .hero p {
  color: #fff;
  text-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
}
.hero h1 {
  font-size: 60px;
  margin-bottom: 20px;
}
@media (max-width: 550px) {
  .hero h1 {
    font-size: 40px;
  }
}
@media (max-width: 400px) {
  .hero h1 {
    font-size: 30px;
  }
}
@media (max-width: 400px) {
  .hero p {
    font-size: 12px;
  }
}
.hero code {
  padding: 4px;
  background-color: #333;
  border-radius: 5px;
}

@keyframes marquee {
  0% {
    background-position: 0;
  }
  100% {
    background-position: -1190px;
  }
}
