body {
  background-color: #00adf0;
}

header .logo {
  display: flex;
  width: 100%;
  height: 80px;
  background-color: #00adf0;
}

header .logoName {
  margin-left: 48px;
  display: flex;
  align-items: center;
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  font-family: "Gaegu", sans-serif;
}
main .character {
  background-color: #9dd8f0;
  border-top: 3px solid rgb(206, 205, 205);
}
main .character .router .addBtn {
  margin: 30px;
  width: 100px;
  height: 40px;
  background-color: white;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  border-style: none;
  cursor: pointer;
}

main .character .input-character .input-character-content .search {
  border-radius: 5px;
  border-style: none;
  height: 30px;
  font-size: 1rem;
  outline: none;
  text-align: center;
}

main .character .router .character-search {
  border-radius: 5px;
  border-style: none;
  height: 30px;
  font-size: 1rem;
  outline: none;
  text-align: center;
}
main .character .input-character {
  margin-left: 30px;
}
main .character .input-character .input-character-title {
  display: block;
  height: 30px;
  font-size: 1.5rem;
  font-weight: bold;
}
main .character .input-character .input-character-title span {
  display: block;
}

main .character .input-character .input-buttons .save-button,
.cancel-button {
  margin-top: 10px;
  margin-left: 10px;
  margin-bottom: 20px;
  width: 50px;
  height: 20px;
  background-color: white;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  border-style: none;
  cursor: pointer;
}

main .character .imformation {
  width: 100%;
  height: 100%;
  background-color: #9dd8f0;
}

main .character .imformation table {
  padding-top: 2rem;
  width: 100%;
  height: 50px;
  justify-content: center;
  align-items: center;
}

main .character .imformation table tr th {
  width: 200px;
  padding: 0px 50px;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: "Gaegu", sans-serif;
  border-left: 1px solid rgb(173, 171, 171);
  height: 50px;
  text-align: center;
}

main .character .imformation table tr th:first-child {
  border: none;
}
main .character .imformation table tr td {
  text-align: center;
  vertical-align: middle;
  font-size: 2rem;
  font-weight: bold;
  font-family: "Gaegu", sans-serif;
}
main .character .imformation table tr td button {
  margin: 5px;
}

/* 
@media (max-width: 560px) {
  width가 560px까지 여기 속성 적용
}


@media (min-width: 560px) {
  width 560px 부터 여기 속성 적용
}
*/
