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

html{
  font-size: 16px;
}
body {
  font-family: stolzl, sans-serif; 
  font-weight: 300;
  line-height: 1.5;
  max-width: 1920px;
  margin: 0 auto;
  background: #F5FAFE;
}
.wrapper-main{
  height: 100vh;
  position: relative;
}
.wrapper{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;

}
.wrapper-50{
  height: 100%;
  text-align: center;
  margin-top: 25%;
}
.img-background{
  display: none;
  
}
.img-fluid{
  max-width: 100%;
  height: auto;
}
.warning{
  width: 100px;
}


.title{
  font-weight: 700;
  font-size: 38px;
  margin: 25px 0;
}
.text{
  font-weight: 300;
  margin-bottom: 25px;
  font-size: 24px;
}
.link{
  color: #e71c03;
  display: block;
  font-size: 28px;
  margin-bottom: 15px;
}
.logo{
  margin-top: 42px;
}
@media(min-width: 900px){
  body{
    line-height: 2;
  }
  .wrapper{
    justify-content: end;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
  }
  .img-background{
    display: block;
    height: 100%;
    object-fit: cover;
  }
  .wrapper-50{
    width: 50%;
    margin-top: 0;
  }
  .title{
    font-size: 38px;
    margin: 15px 0;
  }
  .text,
  .link{
    font-size: 24px;
    margin-bottom: 0;
  }
}

@media(min-width: 1600px){
  .title{
    font-size: 50px;
  }
  .text,
  .link{
    font-size: 38px;
  }
}
