body {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  background-image: url(jan-tinneberg-gJJhG4gM7NA-unsplash.jpg);
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-animation: fade-in 1s 0s both;
  animation: fade-in 1s 0s both;
}

.content {
  z-index: 1;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.content .bco-svg {
  width: 100%;
  margin-bottom: 3em;
}

.content .bco-svg img {
  max-width: 100%;
  height: auto;
}

.content .brand-logo {
  width: 230px;
}

.content .brand-logo #g-1 {}

.content .brand-logo #Calque_2 {
  display: none;
  -webkit-animation: fade-in 2s 0s both;
  animation: fade-in 2s 0s both;
}

.content .brand-logo.active #Calque_2 {
  display: block;
  -webkit-animation: fade-in 2s 0s both;
  animation: fade-in 2s 0s both;
}

.content .brand-logo.active #g-1 {
  display: none;
}

.content h1 {
  position: relative;
  color: #fff;
  font-family: 'Montserrat', serif;
  line-height: 1.2em;
  font-size: 32px;
  font-weight: 500;
  margin: 1em 0 0.5em 0;
}

.content a {
  color: #fff;
  font-family: 'Montserrat', serif;
  text-decoration: none;
  background-image: linear-gradient(90deg, #e94d28 0%, #f4b430 100%);
  font-size: 1em;
  border-radius: 5px;
  padding: 10px 15px;
  font-weight: 600;
  position: relative;
  transition: box-shadow 0.25s ease;
}

.content a:hover {
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.5);
}

.overlay {
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

@media (min-width: 479px) {
  .content h1 {
    font-size: 48px;
  }

  .content a {
    font-size: 2em;
  }
}

/** fade-in Animation **/
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
