@font-face {
  font-family: Roboto;
  src: url(/font/Montserrat-Regular.otf)
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}
body,
html {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  background-image: url(img/background.jpg);
  background-size: cover;
  background-position: center
}
.container {
  width: 80%;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center
}
.logo {
  width: 244px;
  height: 100px
}
.text {
  width: 100%;
  max-width: 800px
}
.title {
  font-family: Roboto;
  font-style: normal;
  font-weight: 600;
  font-size: 60px;
  text-align: center;
  color: #fff
}
.subtitle {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  text-align: center;
  color: #fff;
  margin-top: 10px
}
.social_item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #fff;
  margin-bottom: 3%
}
.icon {
  margin-right: 10px
}
@media (max-width:800px) {
  .logo {
    width: 144px
  }
  .container {
    width: 100%;
    padding: 15px
  }
  .title {
    font-size: 21px
  }
  .subtitle {
    font-size: 18px
  }
  .social_item {
    margin-bottom: 10px
  }
}