@font-face {
    font-family: 'Maplestory Light';
    src: url('fonts/Maplestory Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 20;
    padding-top: 20px;
    font-family: 'Maplestory Light', Arial, sans-serif;
    background-color: #222;
    color: #fff;
}

.container {
    max-width: 600px;
    margin: 20px 40px;
    padding: 2px 30px 10px 30px;
    background-color: #333;
    border: 8px solid #fff;
    border-radius: 24px;
    cursor: default;
    
    transition: all 0.2s ease-in-out;
    /* transform-origin: 20% 20%; */
}
.container a {
    cursor: default;
}
/* 
.container:hover {
    transition: all 0.1s ease-in-out;
    transform: scale(1.1);
} */


.page-outline {
    border: 3px solid #cb82ff;
    border-radius: 16px;
    /* 브라우저 스크롤 시 위치 고정 */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.page-outline #logo {
    border: 3px solid #202020;
    border-radius: 16px;
    background-color: #202020;
    position: fixed;
    right: 2%;
    bottom: 4%;
    width: 10%;
    
    transition: all 0.2s ease-in-out;
    transform-origin: 100% 100%;
    pointer-events: visible;
}

.page-outline #logo:hover {
    border: 3px solid #cb82ff;
    transition: all 0.3s ease-in-out;
    transform: scale(1.6);
}

h1 {
    text-align: left;
    margin-bottom: 20px;
    margin-left: -8px;
    color: #d099f7;
}

.link-list {
    list-style: none;
    padding: 0;
}

.link-list li {
    margin-bottom: 10px;
}

.link-list li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.link-list li a:hover {
    color: #4bfac0;
}

/* 다크모드 스타일 */
body.dark-mode {
    background-color: #111;
    color: #ddd;
}

.dark-mode .link-list li a {
    color: #ddd;
}

.dark-mode .link-list li a:hover {
    color: #ffa726;
}

.link-list li:before {
    content: "\2022"; /* 유니코드로 점 추가 (•) */
    position: relative;
    left: -8px;
    color: #4bfac0;
}