html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #F1F4F6;
  scroll-behavior: smooth;
}

main{
  width: 1032px;
  margin: 0 auto;
}

a{
  text-decoration: none;
}


h1{
  margin: 0;
  font-size: 48px;
  line-height: 56px;
  font-weight: 700;
  align-self: flex-start;
}

h2{
  margin: 0;
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
}

h3{
  margin: 0;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}

h4{
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: #9E9E9E;
}

h5{
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

p{
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
}

/*–––––––––––––––– Introduction ––––––––––––––––*/
.introduction{
  height: 100vh;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.intro-image video{
  width: 240px;
  border-radius: 64px;
}

.intro-content h2{
  margin-bottom: 16px;
}

.scroll{
  color: #3366FF;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  position: absolute;
  transform: translateX(-50%);
  bottom: 16px;
  left: 50%;
}

.scroll:hover{
  color: #1A39B7;
}

.project-photo h2{
  margin: 64px 0 32px 0;
}

.project-photo div{
  display: flex;
}

.project-photo a{
  width: 50%;
}

.poject-photo-left{
  margin-right: 24px;
}

@media only screen and (max-width: 1096px) {
  main{
    width: auto;
    margin: 0 32px;
  }
  .introduction{
    flex-direction: column;
    text-align: center;
  }
}

@media only screen and (max-width: 600px) {
  h1{
    font-size: 40px;
    line-height: 48px;
  }

  h2{
    font-size: 24px;
    line-height: 32px;
  }

  .introduction{
    flex-direction: column;
    text-align: center;
  }
  .project-photo div{
    display: block;
  }

  .project-photo a{
    width: 100%;
  }
}

/*–––––––––––––––– Introduction ––––––––––––––––*/
