* {
  margin: 0;
  padding: 0;
}
body {
  font-family: Helvetica Neue,Helvetica; 
    -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
h1 {
  font-family: Helvetica Neue;
  font-weight: 300;
}
.corner {
  background: url('images/corner.svg') bottom left no-repeat;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 100px;
}
.content-container {
  margin: 0 auto;
  max-width: 510px;
  width: 100%;
  padding: 0px 15px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 90vh;
  box-sizing: border-box;
}
.logo {
  background: url('images/logo.svg') center center no-repeat;
  width: 100%;
  height: 110px;
  display: block;
  text-align: center;
  background-size: 100%;
}
.welcome h1 {
  font-size: 30px;
  padding: 30px 0px 10px 0px;
  text-align: center;
  color: #004158;
}
.welcome p {
  font-size: 18px;
  text-align: center;
  font-weight: 300;
  color: #004158;
}
.welcome p span {
  font-weight: 400;
}
@media only screen and (max-width : 992px) {
  .logo {
    width: 230px;
    height: 60px;
    margin: 0 auto;
  }
  .welcome h1 {
    padding: 10px 0px 10px 0px;
    font-size: 18px;
  }
  .welcome p {
    font-size: 14px;
  }
  .content-container {
    height: 80vh;
  }
}
