@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');
body {
    font-family: Arial, sans-serif;
    padding: 0;
    height: 100vh;
}

#map-container {
    overflow: auto;
    background: #f0f0f0;
}

#answer-box {
    padding: 15px;
    text-align: center;
    position: sticky;
    bottom: 1rem;
    width: fit-content;
    margin: 0 auto;
    border: none;
    border-radius: 1rem;
    background: none;
    backdrop-filter: blur(2rem) saturate(150%);
    max-width: 100%;
}

#input {
    width: 45rem;
    padding: 10px;
    font-size: 18px;
    border: none; 
    border-bottom: 2px solid black; 
    padding: 5px 0;
    outline: none;
    background: none;
}

#score {
    font-size: 20px;
    font-weight: bold;
    padding: 10px;
}

circle.correct, path.correct {
    fill: #00ff00 !important;
}

svg text {
    display: none;
}

svg .title text, #titleroundel, text.title, tspan.title {
    display: block;
}

svg .correct text {
    display: block !important
}

.center {
    display: block;
    margin: 0 auto;
}

#svg {
    display: block;
    margin: 0 auto;
}

h2 {
    width: fit-content;
    margin: 0.5rem auto !important;
}

.also-try {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
    flex-wrap: wrap;
}

.also-try img {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.also-try a {
    text-decoration: none;
    color: black;
}

.also-try a:hover {
    text-decoration: underline;
}

.also-try-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem;
    border-radius: 1rem;
    background-color: #f0f0f0;
    width: 125px;
    overflow: hidden;
}

.also-try-item h3 {
    flex: 1;
    margin-top: 0.5rem;
    margin-bottom: 0;
    line-height: 1.3em;
    text-align: center;
    overflow: hidden;
}