h1 {
    margin-top: 0px;
}


@keyframes pulse {
    0% {
        fill: #c2c964;
    }

    50% {
        fill: rgb(0, 110, 255);
    }

    100% {
        fill: #c2c964;
    }
}

.pulse {
    animation: pulse 1s infinite;
}

#map {
    max-width: 700px;
    margin: auto;
}

.wrong-map-section {
    fill: #ff0000cc;
}

button {
    font-size: 1rem;
    padding: 0;
}

#hint {
    text-shadow: 2px 8px 6px rgba(0, 0, 0, 0.2),
        0px -5px 35px rgba(255, 255, 255, 0.3);
}

#guess-list {
    margin: auto;
    margin-top: 20px;
    max-width: 300px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

.guess-list-element {
    border-bottom: 1px solid #00000044;
    display: flex;
    justify-content: space-between;
}

.wrong-text {
    color: #ff0000aa;
}

.correct-text {
    color: #00aa00;
}

#input-section {
    max-width: 400px;
    margin: auto;
    display: flex;
    padding-top: 40px;
}

#victory-section {
    max-width: 400px;
    margin: auto;
    display: none;
}

#victory-section-answer {
    font-family: 'Luckiest Guy', cursive;
    font-size: 3.5rem;
    color: #1D2D6D;
    text-align: center;
    line-height: 1;
    margin-bottom: 0;
    padding-bottom: 0;
    letter-spacing: 2px;
}

.dropdown-style-overwrite {
    display: inline !important;
    width: 90%;
}