/* Reset some default styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f0f0f0;
}

a {
    color: #1e2a33;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header styles */
#Header {
    background: linear-gradient(to right, #333, #5e5e5e); /* 그라데이션 */
    color: white;
    padding: 20px 0;
    text-align: center;
}

#SiteName {
    margin-bottom: 5px;
}

#SiteMenu ul {
    list-style: none;
    padding: 0;
}

#SiteMenu ul li {
    display: inline;
    margin: 0 15px;
}

#SiteMenu ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

#SiteMenu ul li a:hover {
    text-decoration: underline;
}

/* Section styles */
section {
    padding: 40px 20px;
    margin: 20px auto;
    max-width: 800px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
    margin-bottom: 20px;
    font-size: 35px;
    color: #444;
}

p {
    margin-bottom: 20px;
    font-size: 20px;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
    font-size: 20px;
}

/* Section dividers */
#About, #Skills, #Game, #Achievement, #Education, #Contact {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #ddd;
    margin-left: 20px;
    background: linear-gradient(to right, #f0f0f0, #ebe7e7);
}

#About {
    border-top: none;
}

.project, .experience, .education {
    margin-bottom: 30px;
}

h3 {
    margin-bottom: 10px;
    color: #555;
}

strong {
    color: #444;
}



/* Responsive design */
@media (max-width: 600px) {
    #SiteMenu ul li {
        display: block;
        margin: 10px 0;
        text-align: center;
    }

    section {
        padding: 20px 10px;
    }
}

footer {
    background: linear-gradient(to right, #333, #747474); /* 그라데이션 */
    padding: 20px 0;
    text-align: center;
    color: #fff;
}

#footer-container {
    max-width: 600px;
    margin: 0 auto;
}

#footer-container p {
    margin: 10px 0;
}

#footer-container a {
    color: #dddddd;
    text-decoration: none;
}

#footer-container a:hover {
    text-decoration: underline;
}

#footer-container h2 {
    color: #a8a8a8;
}



