body {
  box-sizing: border-box;
  font-family: "poppins", sans-serif;
  color: #ffffff;
  padding: 0;
  margin: 0;
}

h1 {
  font-weight: 700;

}

.lead, h1 {
  margin: 0;
  font-size: 27px;
  line-height: 40px;
}

.lead {
  font-weight: 400;
}


.container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  height: 100vh;
}

.content {
  width: 100%;
  height: 100%;
}

.content-left {
  background-color: #22307E;
  
}

.content-wrapper {
  max-width: 600px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 70px 0 80px ;
}

.img-wrapper {
  height: 50px;
  width: 200px;
  margin-bottom: 75px;
}

img {
  height: 100%;
  width: auto;
}

.button {
  margin-top: 60px;
}

.button a {
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
  color: #56B7AE;
  font-weight: 600;
  border: solid 2px #56B7AE;
  border-radius: 5px;
  padding: 13px 40px;
}

.button a:hover {
  color: #23307E;
  background-color: #56B7AE;
}

.content-right {
  width: 100%;
  height: 100%;
  background-image: url('./bern.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-position-y: top;
}

@media screen and (max-width: 1100px) {
  .container {
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
    width: unset;
    height: unset;
  }

  .content-right {
    min-height: 50vh;
  }

  .content-wrapper {
    padding: 60px 30px 50px 30px ;
    margin-bottom: 50px;
  }

  .lead, h1 {
    margin: 0;
    font-size: 23px;
    line-height: 30px;
  }

  .img-wrapper {
    margin-bottom: 35px;
  }
}