/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* FONT */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap");

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}

.col {
  display: flex;
  min-height: 100vh;
}

.wrapper,
.img {
  width: 50%;
}

.img {
  display: flex;
}

.img img {
  object-fit: cover;
  max-width: 100%;
}

.wrapper {
  background-color: #1f3f6d;
  display: grid;
  place-content: center;
  padding: 50px;
  color: #fff;
}

.logo {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.logo img {
  max-width: 300px;
}

.wrapper h1 {
  font-size: 3.5vh;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.wrapper h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.lang {
  margin-bottom: 20px;
}
.subtitle {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.description {
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.25;
}

.blockquote {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.25;
  position: relative;
  padding-left: 20px;
}
a {
  color: #fff;
  transition: all .25s ease;
}
a:hover,
a:focus {
  opacity: 0.8;
}
.icon {
  font-size: 2rem;
  position: absolute;
  top: -10px;
  left: 0;
}

.author {
  font-style: italic;
  font-weight: 700;
  padding-left: 20px;
}

@media screen and (max-width: 850px) {
  .col {
    min-height: 100vh;
    flex-direction: column;
  }

  .wrapper,
  .img {
    width: 100%;
  }
  
  .wrapper {
    padding: 40px;
  }

  .wrapper h2 {
    font-size: 1.25rem;
  }
}
