* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  text-align: center;
}

body {
  font-family: 'Do Hyeon', sans-serif;
  font-style: normal;
  background-color: beige;
  color: #333;
  font-size: 16px;
  line-height: 1.5;
}

.container {
  font-weight: bolder;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.main {
  color: #fff;
  line-height: 2;
}

.navbar {
  background-color: green;
  color: #fff;
  height: 60px;
}

.navbar .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.navbar ul {
  display: flex;
  flex-direction: row;
  list-style-type: none;
}

.navbar ul li {
  margin-left: 20px;
}

.navbar .logo {
  font-size: x-large;
  font-weight: bold;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}

.do-hyeon-regular {
  font-family: 'Do Hyeon', sans-serif;
  font-weight: 400;
  font-style: normal;
}
