*{
  margin: 0;
  padding: 0;
  list-style: none;
}

body{
  background: url(bg.png) no-repeat right top;
  width: 100vw;
  height: 100vh;
  background-size: auto 100%;
  overflow: hidden;
  font-family: 'Roboto', sans-serif;
}
body:after{
  content:'';
  display: block;
  background: url(icon.png) no-repeat right bottom;
  background-size: auto 75%;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 5;
  bottom: 50px;
  right: 50px;
}

.page{
  padding: 50px 100px;
  height: calc(100% - 100px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.coming-soon{}
.coming-soon h1{
  color: #061e37;
  font-size: 40px;
}
.text{
  font-size: 15px;
  color: #90a4ae;
  line-height: 25px;
  max-width: 440px;
  margin-top: 30px;
}

.lang{
  position: relative;
  z-index: 999;
}
.lang a{
  color: rgba(6,30,55,.5);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: 300ms;
  margin-right: 25px;
}
.lang a:hover{
  color: rgba(6,30,55,1)
}

.social-media{
  position: absolute;
  bottom: 50px;
  right: 100px;
  z-index: 9999;
}
.social-media a{
  color: rgba(255,255,255,.5);
  margin-left: 25px;
  transition: 300ms;
}
.social-media a:hover{
  color: rgba(255,255,255,1);
}

@media screen and (max-width: 1170px){
  body{
    background: #fff;
  }
  .social-media a{
    color: rgba(6,30,55,.5);
  }
  .social-media a:hover{
    color: rgba(6,30,55,.5);
  }
}