html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
p,
img {
  margin: 0;
  box-sizing: border-box;
  vertical-align: bottom;
  font-weight: normal;
}

header {
  height: 64px;
  display: flex;
  justify-content: space-between;
  padding: 16px 32px;
}

.list {
  list-style: none;
  display: flex;
}
.list a {
  text-decoration: none;
  color: initial;
}
.list li + li {
  margin-left: 16px;
}

main {
  width: 100%;
}

.message {
  background: #eee;
  height: 600px;
  padding: 0 0;
  display: flex;
  align-items: center;
  position: relative;
}
.message div {
  position: absolute;
  left: 64px;
  z-index: 1;
}
.message div p {
  font-size: 64px;
}
.message img {
  position: absolute;
  right: 64px;
  height: 100%;
}
.message .caveat {
  font-family: "Caveat", cursive;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}

#about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 128px 16px 64px 0;
}
#about h2 {
  transform: rotateZ(-90deg) translateY(-50px);
  height: 32px;
  font-size: 64px;
}
#about div {
  width: 320px;
}
#about div p {
  font-size: 16px;
  line-height: 1.8;
}
#about img {
  border-radius: 32px;
  width: 80%;
  margin-left: 16px;
}

#service {
  width: auto;
  display: flex;
  justify-content: space-around;
  flex-direction: row-reverse;
  align-items: center;
  background: #f3fafb;
  padding: 64px 0 64px 16px;
}
#service h2 {
  transform: rotateZ(90deg) translateY(-70px);
  height: 0;
  font-size: 64px;
}
#service div {
  text-align: center;
  margin: 0 16px;
}
#service div h3 {
  font-size: 24px;
  font-weight: normal;
}
#service div p {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 16px;
}
#service .code {
  width: 30%;
  order: 1;
}
#service .code img {
  max-width: 250px;
  width: 100%;
}
#service .wordpress {
  width: 30%;
}
#service .wordpress img {
  max-width: 250px;
  width: auto;
}

#works {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 128px 0;
}
#works h2 {
  transform: rotateZ(-90deg) translateY(-50px);
  height: 64px;
  font-size: 64px;
}

#contact {
  text-align: center;
  padding: 64px 0;
  background: #eee;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 16px;
}

@media (max-width: 810px) {
  header {
    height: 32px;
    padding: 16px 32px 32px;
  }
  header ul {
    display: none;
  }
  .message {
    height: 500px;
  }
  .message div p {
    font-size: 32px;
  }
  .message img {
    width: auto;
  }
  #about {
    flex-direction: column;
    text-align: center;
    padding: 32px 16px 32px;
  }
  #about h2 {
    transform: unset;
    height: 32px;
    font-size: 32px;
  }
  #about .content {
    order: 1;
    text-align: left;
    max-width: 80%;
  }
  #about div {
    margin: 32px auto 0;
    width: auto;
  }
  #about div img {
    width: 40%;
  }
  #service {
    flex-direction: column;
    text-align: center;
    padding: 32px 8px 32px;
    width: auto;
  }
  #service h2 {
    transform: unset;
    height: 32px;
    font-size: 32px;
  }
  #service div {
    margin-top: 32px;
    width: auto;
  }
  #service div img {
    width: auto;
  }
  #service .code {
    width: 80%;
    order: 1;
  }
  #service .wordpress {
    order: 1;
    width: 80%;
  }
  #works {
    flex-direction: column;
    text-align: center;
    padding: 32px 16px 32px;
    height: 64px;
  }
  #works h2 {
    transform: unset;
    height: 32px;
    font-size: 32px;
  }
  #contact .contact {
    width: auto;
  }
}
@media (max-width: 450px) {
  header li {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */