@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/poppins-v22-latin-regular.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('/fonts/poppins-v22-latin-600.woff2') format('woff2');
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: .9em;
  font-size: 14px;
  font-style: normal;
  font-family: 'Poppins', sans-serif;
}
body {
  background-color: #333;
  background-image: url(/pic.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#lang {
  color: #fff;
  background-color: #333;
  position: fixed;
  top: 0;
  right: 0;
  padding: .5em
}
a {
  text-decoration: none;
  display: block;
  color: #000
}
#main {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}
.content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: .5em;
}
.content #logo {
  max-width: 380px;
  margin: 0
}
.content h1 {
  text-transform: uppercase;
  font-size: 2em;
  padding-bottom: 6em;
  text-align: center
}
.content #intro {
  background-color: rgba(255, 255, 255, .7);
  padding: 1em;
  max-width: 660px;
}
.content a {
  min-height: 380px;
  max-width: 380px;
  background-color: rgba(255, 255, 255, .7);
  padding: 1em;
}
.content a strong {
  font-size: .9em
}
.content a h3 {
  margin-bottom: 1em;
  font-size: 1.2em
}
.content a p {
  line-height: 1.5em;
  margin-bottom: .5em
}
ul {
  padding-left: 1em
}
li {
  font-weight: 600;
  margin-bottom: .15em
}
p {
  font-size: .9em;
}
img {
  display: block;
  max-width: 100%;
  margin-bottom: 2em;
}
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: rgba(255, 255, 255, .7);
  padding: 1em 0;
}
footer a {
  display: inline;
  font-weight: 600;
}
@media screen and (max-width: 600px) {
  .content {
    flex-direction: column;
  }
  .content h1 {
    padding-bottom: 2em;
  }
  footer {
    position: relative;
  }
}
