body {
    background-color: #c6ff8c;
    gap: 0;
    margin: 0;    
}

p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#bubbel {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 0;
    margin: 2rem 0 0 0;
    min-height: 77vh;
}

.ballon {
    background-color: white;
    grid-column: 2;
    place-self: start center;
    border-radius: .4em;
    border-top-left-radius: 0;
    display: grid;
    position: relative;
    margin-bottom: 1rem;
    max-height: fit-content;
}

.puntje::before {
    display: grid;
    grid-column: 1;
    grid-row: 1;
    place-self: end;
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    border-left: 10px solid transparent;
    border-right: 10px solid white;
    border-top: 10px solid white;
    border-bottom: 10px solid transparent;
    left: -20px;
    top: 0;
}

#plaatje {
    place-self: center;
    padding: 8px 8px 4px 8px;
}

#tekst {
    padding: 0 8px 8px 8px;
    margin: 0;
    font-size: 15px;
}

#knop {
    position: fixed;
    bottom: 4rem;
    right: 10rem;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    font-weight: 700;
    background-color: #8ae330;
    color: white;
    border: none;
    border-radius: .4em;
    padding: 12px;
    height: fit-content;
}

#knop:hover {
    background-color: white;
    color: #8ae330;
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
    cursor: pointer;
}

#uitleg {
    position: absolute;
    top: 1.5rem;
    right: 9.5rem;
    color: #72c223;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 15rem;
    text-align: right;
}

.wat {
    width: fit-content;
    cursor: pointer;
}

@media screen and (max-width: 900px) {
    #uitleg {
        right: 5rem;
    }
}

@media screen and (max-width: 678px) {
    #bubbel {
        grid-template-columns: 2em 1fr 15vw;
        margin: 10vh 2em 0 0;
        min-height: auto;
    }
    #knop {
        position: static;
        font-size: 16px;
        grid-column: 2 / 4;
        grid-row: 2;
        width: fit-content;
        place-self: start end;
        margin-top: 1em;
    }
    #uitleg {
        position: relative;
        top: auto;
        right: auto;
        grid-column: 2;
        grid-row: 3;
        margin-top: 1rem;
        margin-bottom: 1rem;
        text-align: left;
    }
}

@media (pointer:coarse) {
    #knop:hover {
        background-color: #8ae330;
        color: white;
        box-shadow: none;
    }
}