@font-face {
    font-family: 'YesGothic';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_13@1.0/YESGothic-Regular.woff') format('woff');
    font-weight: normal;
    font-display: swap;
}


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

body {
    font-family: 'YesGothic';
    letter-spacing: -0.3px;
    font-size:12px;
    text-align: center;
    background-color: #fff;
    color: #000;
    padding: 10px;
    margin-top: 30px;
}


a {
    text-decoration: none;
    color: #2A52BE;
}

a:hover {
    opacity: 0.7;
}


img {
  transform: translateY(2px);
}

hr {
  border: 0;
  border-top: 1px dashed #000;
  margin: 13px;
}


.menu ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    border-bottom: 1px solid;
    margin-bottom: 10px;
}

.menu li {
    margin-top: 15px;
    margin-bottom: 10px;
    margin-left: 8px;
    font-weight: bold;
}

.content {
    max-width: 500px;
    width: 100%;
    margin: 10px auto;
    background: #fff;
    padding: 15px;
    border: 1px solid;
    line-height: 1.7;
    box-shadow: 3px 3px 0 #fff,
                     4px 4px 0 #000,
                     4px 2px 0 #000,
                     2px 4px 0 #000;
}

#main-content {
    transition: opacity 0.2s ease;
}


footer {
    text-align: right;
    padding: 10px 0;
    font-size: 11px;
    border-top: 1px solid;
    margin-top: 10px;
}