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

body {
    margin: 20px;
    font-family: monospace;
    padding-top: 40px; /* h1 높이만큼 여백 추가 */
}


h1 {
    line-height: 13pt;
    margin-top: 0;
    margin-bottom: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    font-size: 10pt;
    font-weight: normal;
    padding: 10px 0;
    padding-left: 20px;
    z-index: 1000;
    border-bottom: 0.5px dotted black;
}

p { 
    font-size: 10pt;
    line-height: 15pt
/*    margin-left: -7px;*/
}

section {
    /*margin: 20px;*/
    width: 100%;
    border-bottom: 0.5px dotted black;
    margin-top: 10px;
    margin-bottom: 5px;
    padding-bottom: 20px;
}

section:first-child {
    padding-top: 35px;
}

img {
    max-width: 170px;
    margin-left: 7px;
    margin-top: 7px;
}

@media screen and (max-width: 704px) {
    img {
        max-width: 30%;
        margin: auto;
    }
}
