body {
    height: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    text-align: center;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;

    p {
        font-size: 1.2rem;
    }

}


.container-knoppen {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    text-align: center;
    padding-block: 5rem;
    flex-wrap: wrap;
    flex-direction: column;
}

@media (min-width: 700px) {
    .container-knoppen {
        flex-direction: row;
        gap: 10rem;
    }

    main {
    padding-top: 4rem;
    padding-bottom: 4rem;
    }
}




#zenButton,#bgButton {
    width: 12.5rem;
    height: 12.5rem;
    background-color: oklch(25.65% 0.01286 243.445);
    border: none;
    border-radius: 50%;
    box-shadow: 0 0 .938rem oklch(0% 0 0 / 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;

    span {
        color: oklch(100% 0.00011 271.152);
        font-size: 1.5rem;
        font-weight: bold;
        z-index: 1;
    }
}

#zenButton::before {
    content: "";
    position: absolute;
    width: 7.5rem;
    height: 7.5rem;
    background-color: oklch(32.564% 0.01352 248.309);
    border-radius: 50%;
    z-index: 0;
}

#zenButton:hover {
    transform: scale(1.05);
    background-color: oklch(30.584% 0.01372 248.338);
}

#zenButton:active {
    transform: scale(0.95);
    background-color: oklch(37.493% 0.0139 244.066);
}

.label {
    font-size: 1rem;
    font-weight: bold;
}

.knoppen {
    display: flex;
    flex-direction: column;
    align-items: center;
}


#bgButton::before {
    content: "";
    position: absolute;
    width: 7.5rem;
    height: 7.5rem;
    background-color: oklch(32.564% 0.01352 248.309);
    border-radius: 50%;
    z-index: 0;
}

#bgButton:hover {
    transform: scale(1.05);
    background-color: oklch(30.584% 0.01372 248.338);
}

#bgButton:active {
    transform: scale(0.95);
    background-color: oklch(37.493% 0.0139 244.066);
}