body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    flex-direction: column;
}

section {
    margin-bottom: 50px;
    padding: 20px;
    text-align: center;
}

#logo {
    margin-top: 20px;
    text-align: center; /* 로고 가운데 정렬 */
}

img {
    max-width: 100%;
    height: auto;
    object-fit: contain; /* 이미지 비율 유지 */
}

footer {
    text-align: center;
    margin-top: 50px;
    font-size: 14px;
    color: gray;
}

/* 반응형 스타일 */
@media (min-width: 768px) {
    img {
        max-width: 40%;
    }
}

/* 언어 변경 버튼 스타일 */
.language-buttons {
    position: absolute;
    top: 10px;
    right: 10px;
}

.language-buttons button {
    border: none;
    background: none;
    font-size: 1em;
    cursor: pointer;
    color: black; /* 기본 색상 */
    padding: 0.25em 0.5em; /* 버튼 크기 조정 */
}

.language-buttons button.inactive {
    color: gray; /* 비활성 색상 */
}
