@import url(https://fonts.googleapis.com/css?family=Roboto:300);

body {
    font-family: "Roboto", sans-serif;
    color: rgb(255, 255, 255);
    background-color: rgb(240, 241, 240);
}

/* CSS-Styling für die pulsierenden Punkte */
.pulse {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgb(98, 145, 176);
    animation: pulse 1s ease-in-out infinite;
}

.pulse:hover {
    animation: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(0.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* CSS-Styling für das Infofenster */
.info-window {
    position: absolute;
    background-color: rgb(98, 145, 176);
    /* border: 1px solid black; */
    padding: 10px;
    opacity: 0;
    transform: translateY(130%);
    transition-timing-function: ease-in;
    transition: 0.2s;
    visibility: hidden;
    width: auto;
}

.info-window h3 {
    font-size: 25px;
}

.info-window p {
    font-size: 15px;
    text-align: justify;
}

/* CSS-Styling für das Beschreibung-Fenster */
.description-window {
    position: absolute;
    background-color: rgb(98, 145, 176);
    /* border: 1px solid black; */
    padding: 5px;
    opacity: 0;
    transition: 0.2s;
    visibility: hidden;
}

.shown {
    transition: 0.25s;
    transition-timing-function: ease-out;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
