* {
	margin: 0;
	padding: 0;
	border: 0;
  justify-content: center;
  text-decoration: none;
  font: inherit;
  color: black;
}

body {
  margin: 0 auto;
  font-family: "Noto Sans KR", sans-serif;
  line-height: 1.7;
  word-break: keep-all;
}

.nav {
    display: inline;
    position: fixed;
    right: 5px;
    top: 0px;
    word-spacing: 13px;
  }
  
  .nav a {
    color: rgb(0, 0, 0);
    text-decoration: none;
  }
  
  .nav a:hover {
    color: rgb(101, 101, 101);
  }
  
  .first {
    position: fixed;
    left: 5px;
    top:0px;
    font-family: "Noto Sans KR", sans-serif;
  }

  .copy {
    display: inline;
    position: fixed;
    left: 5px;
    bottom: 0px;
    font-size: 10px;
  }

/* 이미지 */
.place-image-wrapper {
    position: relative;
    width: 100px;
    height: 20px;
}



.description-section {
    margin-top: 90px;
    display: flex;
    flex-direction: column;
    color: rgb(34,34,34);
    font-size: 15px;
    gap: 3px;
}

.description-section_title {
    font-weight: 600;
}

main {
    display: flex;
    justify-content: center;
    padding: 1px 1px;
}

#place-items-wrapper {
    display: grid;
    grid-template-columns: repeat(4,300px);
    justify-items: center;
    align-items: center;
    box-sizing: border-box;
    gap: 1px 1px
}


