@font-face {
  font-family: ApercuPro;
  src: url('assets/font/apercu_regular_pro.otf');
}
@font-face {
  font-family: ApercuPro;
  font-weight: 500;
  src: url('assets/font/apercu_medium_pro.otf');
}
@font-face {
  font-family: ApercuPro;
  font-weight: 600;
  src: url('assets/font/apercu_bold_pro.otf');
}

* {
  font-family: ApercuPro;
  transition: 
    margin 0.3s ease, 
    font-size 0.3s ease, 
    padding 0.3s ease,
    width 0.3s ease,
    heigth 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

html, 
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  box-sizing: border-box;
  overflow: hidden;
}

body {
  background-image: url('assets/images/bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left 50%;
  background-attachment: fixed;
}

section {
  margin: 84px 0 0 100px;
}

img {
  width: 112px;
  height: 112px;
}

h1 {
  margin: 20px 0;
  padding: 0;
  color: rgba(34, 29, 25, 1);
  line-height: 0.82;
  font-weight: 700;
  font-size: 100px;
}

h2 {
  margin: 20px 0;
  padding: 0;
  max-width: 780px;
  color: rgba(34, 29, 25, 1);
  font-weight: 500;
  font-size: 60px;
  line-height: 100%;
}

a {
  display: inline-block;
  padding: 19px 42px 20px;
  background-color: rgba(255, 255, 255, 0.6);
  font-size: 32px;
  font-weight: 400;
  border-radius: 20px;
  text-decoration: none;
  color: #000;
}
a img {
  display: inline-block;
  margin-left: 5px;
  width: 28px;
  height: 23px;
  vertical-align: middle;
}
a:hover {
  color: rgba(3, 84, 241, 1);
  background-color: rgba(255, 255, 255, 1);
}

@media (max-height: 960px) {
  section {
    margin: 45px 0 0 100px;
  }

  img {
    width: 60px;
    height: 60px;
  }

  h1 {
    margin: 20px 0 15px;
    font-size: 60px;
  }

  h2 {
    margin: 15px 0;
    max-width: 520px;
    font-size: 40px;
  }

  a {
    padding: 9px 24px 10px;
    background-color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    border-radius: 12px;
  }
  a img {
    width: 19px;
    height: 14px;
  }
}

@media (max-width: 800px) {
  section {
    margin: 117px 32px 0 32px;
  }

  img {
    width: 60px;
    height: 60px;
  }

  h1 {
    margin: 15px 0;
    font-size: 44px;
  }

  h2 {
    margin: 15px 0 10px;
    font-size: 28px;
    max-width: 380px;
  }

  a {
    padding: 9px 24px 10px;
    background-color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    border-radius: 12px;
  }
  a img {
    width: 19px;
    height: 14px;
  }
}