@font-face {
  font-family: SportingGrotesque;
  src: url(fonts/AdobeClean-Regular.otf);
  font-weight: regular;
}
@font-face {
  font-family: SportingGrotesque;
  src: url(fonts/AdobeClean-Bold.otf);
  font-weight: bold;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  min-height: 100vh;
  font-family: 'Source Serif Pro', serif;
  position: relative;
}

body * {
  box-sizing: border-box;
}

a {
  color: inherit;
  cursor: pointer;
}

p {
  margin: 0;
}

.bold-text {
  font-weight: 700;
}

.bg-content-container {
  overflow: hidden;
  position: relative;
}

.bg-image {
  opacity: 0.2;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("img/background.jpg");
  background-position: 0;
  background-repeat: repeat;
}

.container {
  font-size: 20px;
  color: black;
  max-width: 990px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  position: relative;
}

.lang {
  text-transform: uppercase;
  font-size: 16px;
  font-family: 'Source Sans Pro', sans-serif;
  margin: 0 0 8px;
  line-height: 1.5;
}

.text {
  margin-bottom: 20px;
  line-height: 1.5;
}

.logos-container {
  display: flex;
}

.logos-container svg {
  width: 150px;
  border: 1px solid #707070;
  border-radius: 8px;
}

.logo-img {
  border: 1px solid #707070;
  border-radius: 7px;
}

.logo-link + .logo-link {
  margin-left: 20px;
}

@media only screen and (min-width: 768px) {
  html, body {
    height: 100%;
  }
  .content-container {
    display: flex;
    align-items: center;
    height: 100%;
  }

  .container {
    max-width: 850px;
    display: block;
    margin: 0 auto;
    height: auto;
  }

  .lang-section {
    display: flex;
  }

  div.lang-section:nth-child(2) .lang,
  div.lang-section:nth-child(2) .text {
    padding-top: 30px;
  }

  .lang {
    min-width: 20px;
    margin-right: 10px;
  }

  .text {
    border-left: 1px solid #707070;
    margin-bottom: 0;
    padding-left: 15px;
  }

  .logos-container {
    margin-top: 30px;
    margin-left: 46px;
  }

  .logo-link + .logo-link {
    margin-left: 35px;
  }
}

@media only screen and (max-width: 450px) {
  .logos-container {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .logo-link {
    margin-top: 10px;
  }

  .logo-link + .logo-link {
    margin-left: 0;
  }
}