@import url("../font/Pretendard.css");

/* basic */
* {
  margin: 0;
  padding: 0;
  font-family: "Pretendard", sans-serif;
  word-break: keep-all;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

body {
  color: #1c1c1c;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
}

img {
  display: block;
}

section,
footer {
  width: 100%;
}

button {
  cursor: pointer;
}

#content {
  width: 100%;
  position: relative;
  padding-bottom: 150px;
}

#con {
  display: flex;
  margin-top: 100px;
  margin-bottom: 150px;
}

#con .con_title {
  min-width: 260px;
  font-size: 2.6rem;
  line-height: 3.6rem;
  font-weight: 900;
}

@media screen and (max-width: 1280px) {
  #con {
    flex-direction: column;
    margin-bottom: 0;
    margin-top: 30px;
  }

  #con .fit {
    display: none;
  }

  #con .con_title {
    margin-bottom: 30px;
  }

  #con .inaccuracy .boxes {
    display: flex;
    justify-content: space-between;
  }
}


@media screen and (max-width: 1024px) {
  #content {
    padding-bottom: 120px;
  }
}

@media screen and (max-width: 520px) {
  #con .con_title {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
}