::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}
@media (max-width: 768px) {
    /* 웹킷 브라우저 스크롤바 숨기기 */
    .main-content::-webkit-scrollbar {
        display: none;
    }
    
    /* 파이어폭스 스크롤바 숨기기 */
    .main-content {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    /* iOS Safari 스크롤바 숨기기 */
    .main-content {
        -webkit-overflow-scrolling: touch;
    }
}


body {
    margin: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5; 
}

.header {
    background-color: #6e84ff; 
    color: white;
    padding: 62px 0 1px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.header h1 {
    margin: 0 0 10px 0;
    font-size: 2.5em;
}

.header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.header nav li {
    margin: 0 15px;
}

.header nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.header nav a:hover {
    color: #FFD700; 
}

.main-content {
    display: flex;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}   
@media (max-width: 484px) {
    .main-content {
        min-height: 0;
    }
}

.main-content h2 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 2em;
}

.menu-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item h3 {
    color: #4CAF50; /* 珥덈줉�깋 媛뺤“ */
    font-size: 1.8em;
    margin-top: 0;
}

.menu-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 0.85em;
    margin-top: 30px;
}

@media (max-width: 768px) {

    .header nav ul {
        flex-direction: column; 
    }

    .header nav li {
        margin: 5px 0;
    }
}          
