@import url("https://fonts.googleapis.com/css?family=Nanum+Myeongjo&display=swap");
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  margin: 0;
  width: 100vw;
  height: 100vh;
}

.navbar {
  width: 100vw;
  height: 110px;
  padding: 5px 30px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logobox img {
  width: 320px;
  height: 80px;
  padding-left: 10px;
}

.nav__menu {
  display: flex;
}

li {
  font-family: "Nanum Myeongjo", serif;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  align-items: center;
}

.nav__menu li {
  padding: 45px 40px;
}

.nav__menu li:hover {
  background-color: #5a736d;
  color: white;
}

.index__main {
  width: 100%;
  height: calc(100% - 110px);
  overflow-y: auto;
}

* {
  box-sizing: border-box;
}
