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

body {
    font-family: monospace;
    background-color: royalblue;
    word-break: keep-all;
}

.nav {
    position: absolute; 
    /*너는 다른 링크를 누르더라도 그 상태로 움직이지 않을 거다*/
    height: 100%;
    width: 300px;
    border-right: 1px solid white;
}

ol {
    padding: 20px;
    /* 표가 있다면, 표 바깥 */
    margin-left: 20px;
    /* 표가 있으면 표 바깥 */

}

a {
    color: white;
    word-break: break-all;
    cursor: pointer;
}

mark {
    background-color: white;
}








.post { 
    position: absolute;
    height: 100%;
    width: calc(100% - 300px);
    /* 너는 100퍼센트이긴 한데 300픽셀을 뺸 만큼이야,
    내브의 가로가 300이엇으니까 */
    margin-left: 300px;
    /* 마진을 내브만큼 다시 밀어냄 */
    padding: 20px;
    /* 디브 안쪽으로 여백이 생겨라! */
}


.content {
    display: none;
    height: 100%;
}

.content:target {
    display: block;
}


/* 보였다, 안 보였다 할 수 있는 항복 */

iframe {
  width: 100%;
  height: 100%;
  background-color: white;
}







@media screen and (max-width: 704px) {
  .nav {
    position: relative;
    width: 100%;
    height: auto;
    border-right: none;
  }
  .post {
    display: none;  
  }

  ol {               
    padding: 12px;
  }

}


