@font-face {
     font-family: 'DungGeunMo';
     src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/DungGeunMo.woff') format('woff');
     font-weight: normal;
     font-style: normal;
}

body{
    font-family: 'DungGeunMo';
    background-color:  #088A85;
    width: 100vw;
    height: 100vh;
    }

.box {
    text-align: center;
    line-height: 21px;
    position: absolute;     /* 상대적위치:relative, 절대적위치:absolute */
        /* 상자 위치 */
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        /* 상자 폭과 높이 지정 */
        width: 180px;
        height: 15px;
        /* 상자 배경색 */
        background-color: #BDBDBD;
        color: black;
        /* 안쪽 여백 */
        padding: 15px 20px 20px 25px; /* 위 오른 아래 왼 */
        text-align: center;
        border-style: solid;
        border-width: 3px;
        border-color: white black black white;
}


p{
  margin: 0;
  letter-spacing: 0px;
  font-size: 18px;
}
a {
  text-decoration-line: none;
  color: black;
/*   text-decoration-line: underline; */
/*   text-decoration-line: overline; */
/*   text-decoration-line: line-through; */
/*   text-decoration-line: underline line-through overline; */
}


h1{
  font-size: 30px;
  color: white;
  }