body {
  font-family: 'Roboto', sans-serif;
  background-color: #fff;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}
*, *::before, *::after {
  box-sizing: border-box;
}
.line-top {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #d8dde3;
}
.line-bottom {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #d8dde3;
}
.line-left {
  position: absolute;
  top: 0;
  left: 40px;
  height: 100%;
  width: 1px;
  background-color: #d8dde3;
}
.line-right {
  position: absolute;
  top: 0;
  right: 40px;
  height: 100%;
  width: 1px;
  background-color: #d8dde3;
}
.content {
  margin-top: -180px;
  text-align: center;
  padding: 0 15px;
}
.logo-container {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
}
.logo {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
}
.highlighted-text {
  color: #00AEEF;
}
.animated-text {
  font-family: mundial, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 6em;
  color: black;
  display: inline-block;
  line-height: 0.9;
}
.animated-text span {
  color: #00AEEF;
  display: inline-block; /* only the span is animated */
  animation: pulseSpace 2.5s infinite alternate;
}
@keyframes pulseSpace {
  0% {
    transform: scale(1);
    letter-spacing: normal;
  }
  100% {
    transform: scale(1.05);
    letter-spacing: 0.2em;
  }
}
.description {
  margin-top: 60px;
}
.description p {
  font-size: 1.2em;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
  color: black;
  line-height: 1.5em;
}
.description p span {
  display: inline;
  background-image: linear-gradient(to bottom, #FE0077, #FE0077);
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: 0 100%;
  padding-bottom: 3px;
}
.content-link {
  position: absolute;
  bottom: 80px;
  width: 100%;
  text-align: center;
}
.content-link a {
  font-family: 'Roboto', sans-serif;
  font-size: 1.5em;
  color: black;
  border: 1px solid #FE0077;
  text-decoration: none;
  display: inline-block;
  background-color: #f8f9fa;
  padding: 15px;
  transition: background-color 0.3s, color 0.3s;
}
.content-link a:focus, .content-link a:hover {
  color: white;
  background-color: #FE0077;
  border-color: white;
}
.language-navigation {
  color: #fff;
  position: fixed;
  top: 50px;
  right: 40px;
  z-index: 9999;
}
.language-navigation a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  padding: 10px;
  background-color: black;
}
a.white-link:link, a.white-link:visited, a.white-link:focus, a.white-link:active {
  color: #fff;
  text-decoration-color: #fff;
}
a.white-link:hover {
  color: #fff;
  text-decoration-color: #fff;
}
/* MOBILE */
@media screen and (max-width: 900px) {
  .line-top {
    top: 15px;
  }
  .line-bottom {
    bottom: 15px;
  }
  .line-left {
    left: 15px;
  }
  .line-right {
    right: 15px;
  }
  .content {
    margin-top: -120px;
    text-align: center;
    padding: 0 15px;
    margin-left: 15px;
    margin-right: 15px;
  }
  .description p {
    font-size: 1em;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    color: black;
    line-height: 1.5em;
  }
  .animated-text {
    font-size: 3em;
  }
  .description {
    margin-top: 40px;
  }
  .content-link {
    bottom: 30px;
  }
  .content-link a {
    font-size: 1em;
    margin-left: 30px;
    margin-right: 30px;
  }
  .language-navigation {
    color: #fff;
    position: fixed;
    top: 25px;
    right: 15px;
    z-index: 9999;
  }
}