@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;600;800&display=swap');

body{
  margin: 0;
}

section{
  background: linear-gradient(to bottom right,#92ffc0, #002661);
  height: 100vh;
  font-family: 'Open Sans', sans serif;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #63626e;
}

article{
  display: flex;
}

.bild{
  width: 60%;
  background: url("https://images.unsplash.com/photo-1548266652-99cf27701ced?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=870&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 50px 0px 0px 50px;
}

.info{
  width: 40%;
  background: white;
  padding: 5%;
  border-radius: 0px 50px 50px 0px;
}

.info h1{
  font-size: 32px;
}

.info p{
margin-bottom: 75px;
}

.info a{
  background: #92ffc0;
  display: block;
  width: 250 px;
  text-align: center;
  padding: 5px 0;
  text-decoration: none;
  color: #63626e;
  border-radius: 15px;
  box-shadow: 4px 4px 0px #63626e;
  transition: all .5s linear;
}

.info a:hover{
  box-shadow: 0px 0px 2px #63626e;
  transition: all .5s linear;
  transform: translate(4px, 4px);
}