html {
    font-size: 16px;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    text-align: center;
    padding: 2rem 1rem;
    margin: 0;
}

h1 {
    font-size: 2rem;
}

button {
    font-size: 1.125rem;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    margin: 0.5rem;
}

#result {
    margin-top: 1.25rem;
    font-size: 1.75rem;
    font-weight: bold;
    color: #333;
    word-break: keep-all;
}

#result small {
    font-size: 1rem;
    font-weight: normal;
    color: #888;
}

#capital, #major-cities {
    margin-top: 0.625rem;
    font-size: 1.375rem;
    color: #555;
    word-break: keep-all;
}

#unesco-sites {
    margin-top: 1.25rem;
    font-size: 1.125rem;
    color: #777;
}

#unesco-sites h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

#unesco-sites ul {
    list-style-type: none;
    padding: 0;
    margin: 0 auto;
    max-width: 80%;
    word-break: keep-all;
}

#unesco-sites li {
    margin-bottom: 0.5rem;
}

.english-name {
    font-size: 0.8em;
    color: #888;
    font-weight: normal;
}

#unesco-images-container {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.unesco-image-item {
    flex-basis: 300px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem;
}

.unesco-image-item img {
    max-width: 100%;
    border-radius: 4px;
}

.unesco-image-item p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #555;
}


/* Responsive Design */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    body {
        padding-top: 2rem;
    }
    h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 12px;
    }
    body {
        padding-top: 1rem;
    }
    h1 {
        font-size: 1.5rem;
    }
    #result {
        font-size: 1.5rem;
    }
    #capital, #major-cities {
        font-size: 1.2rem;
    }
}

.draw-button {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 12px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition-duration: 0.4s;
}

.draw-button:hover {
    background-color: #45a049;
}
