body {
    font-family: 'Pretendard', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 1em;
}

.container {
    background-color: #1e1e1e;
    padding: 2.5em;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    max-width: 800px; /* 댓글창이 너무 좁아보이지 않도록 너비를 조금 넓혔습니다 */
    width: 95%;
    margin-bottom: 2em;
    border: 1px solid #333;
}

h1 {
    font-size: 2.2em; /* 타이틀을 조금 더 강조 */
    color: #ffffff;
    text-align: center;
    margin-bottom: 0.5em;
    font-weight: 600;
}

p {
    text-align: center;
    margin-bottom: 2em;
    color: #a0a0a0;
    line-height: 1.6;
}

#disqus_thread {
    background-color: #1e1e1e;
    padding: 1em;
    border-radius: 12px;
}

footer {
    text-align: center;
    color: #777;
    font-size: 0.9em;
    margin-top: auto;
    padding-top: 2em;
}

footer p {
    margin: 0.5em 0;
}
