* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  width: 100%;
}
body {
  font-family: 'Helvetica', Arial, sans-serif;
  overflow: hidden;
}
#bg {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 6750px;
  background: url('../images/background-main.png') left center repeat-x #348cb2;
  background-size: 2250px auto;
  animation: bg 60s linear infinite;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}
@keyframes bg {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-2250px, 0, 0);
  }
}
@media screen and (max-width: 1680px) {
  #bg {
    width: 4500px;
    background-size: 1500px auto;
  }
  @keyframes bg {
    0% {
      transform: translate3d(0, 0, 0);
    }
    100% {
      transform: translate3d(-1500px, 0, 0);
    }
  }
}
@media screen and (max-width: 1280px) {
  #bg {
    width: 2250px;
    background-size: 750px auto;
  }
  @keyframes bg {
    0% {
      transform: translate3d(0, 0, 0);
    }
    100% {
      transform: translate3d(-750px, 0, 0);
    }
  }
}
@media screen and (max-width: 736px) {
  #bg {
    width: 900px;
    background-size: 300px auto;
  }
  @keyframes bg {
    0% {
      transform: translate3d(0, 0, 0);
    }
    100% {
      transform: translate3d(-300px, 0, 0);
    }
  }
}
.container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}
.content {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  padding: 2rem;
}
.logo {
  width: 80px;
  height: auto;
  margin-right: 1.5rem;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.7));
}
h1 {
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}
h1 .title {
  font-weight: 600 !important;
}
@media (max-width: 600px) {
  .logo {
    width: 50px;
    margin-right: 1rem;
  }
  h1 {
    font-size: 1.2rem;
    letter-spacing: 0.05em;
  }
}
