@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans KR", sans-serif;
}

html {
  font-size: 16px;
}

html,
body {
  width: 100%;
  height: auto;
}

ol,
ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
}

img {
  border: 0;
}

header,
main,
footer,
nav,
section,
article,
aside {
  display: block;
}

main {
  width: 85%;
  margin: 75px auto;
  position: relative;
}
main h1 {
  color: #4677ff;
  font-size: 48px;
  font-weight: normal;
}
main h1 b {
  letter-spacing: -1.28px;
}
main h2 {
  margin: 50px 0;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: -0.6px;
  color: #202020;
}
main p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: -0.6px;
  text-align: left;
  color: #202020;
  margin-bottom: 20px;
}
main p i {
  color: #4677ff;
  font-style: normal;
  font-weight: 500;
}
main .graybox, main .borderbox {
  width: 100%;
  max-width: 775px;
  padding: 24px;
  box-sizing: border-box;
  border-radius: 6px;
  border: solid 1px #e8e8e8;
  background-color: #f5f5f5;
  margin-bottom: 20px;
}
main .graybox h3, main .borderbox h3 {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.67;
  letter-spacing: -0.6px;
  text-align: left;
  color: #202020;
  margin-bottom: 20px;
}
main .graybox p, main .borderbox p {
  font-size: 16px;
  line-height: 1.67;
  letter-spacing: -0.6px;
  text-align: left;
  color: #8a8a8a;
  margin-bottom: 0;
}
main .borderbox {
  background-color: #fff;
  margin-bottom: 0;
  border-radius: 6px 6px 0 0;
  border-bottom: 0;
  position: relative;
}
main .borderbox p#typed {
  height: 54px;
}
main .borderbox img {
  position: absolute;
  top: 18px;
  right: 26px;
}
main .logoFlex {
  width: 100%;
  max-width: 775px;
  display: flex;
  align-items: center;
  background-color: #f5f5f5;
  padding: 0px 24px;
  box-sizing: border-box;
  border: 1px solid #e8e8e8;
  border-top: 0;
  border-radius: 0 0 6px 6px;
}
main .logoFlex img {
  width: 90px;
}
main button.fixedBtn {
  position: fixed;
  bottom: 96px;
  right: 96px;
  background-color: #4677ff;
  border: none;
  border-radius: 0;
  color: #fff;
  padding: 5px 26px 6px;
  outline: none;
  cursor: pointer;
  font-size: 18px;
}
main p.fixedText {
  position: fixed;
  bottom: 65px;
  right: 96px;
  margin: 0;
  font-size: 15px;
  letter-spacing: -0.5px;
  color: #8a8a8a;
}

@media only screen and (max-width: 1280px) {
  main {
    margin: 50px auto;
  }
  main h1 {
    font-size: 32px;
  }
  main h2 {
    font-size: 12px;
  }
  main p {
    font-size: 12px;
  }
  main .graybox, main .borderbox {
    max-width: 550px;
  }
  main .graybox h3, main .borderbox h3 {
    font-size: 12px;
  }
  main .graybox p, main .borderbox p {
    font-size: 12px;
  }
  main .borderbox p#typed {
    height: 40px;
  }
  main .logoFlex {
    max-width: 550px;
    flex-wrap: wrap;
  }
  main button.fixedBtn {
    font-size: 12px;
    right: 51px;
    text-wrap: nowrap;
  }
  main p.fixedText {
    font-size: 10px;
    right: 51px;
    bottom: 75px;
    text-wrap: nowrap;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
}