#app {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

#app h2 {
    margin-bottom: 3rem;
}

#app span {
    display: block;
    font-size: 2rem;
}

#app button {
    border: none;
    width: 150px;
    height: 115px;
    margin: .5rem;
    border-radius: 1rem;
    transition: all .5s ease-in-out;
}

#app button:hover {
    background: var(--main-color);
    color: var(--white);
    transition: all .5s ease-in-out;
}

#app a {
    display: block;
    margin-top: 1rem;
    font-size: 1.2rem;
}

#app .failed {
    background-color: rgb(227, 58, 58);
    padding: 2rem;
    color: var(--white);
}

#app .success {
    background-color: rgb(3, 152, 6);;
    padding: 2rem;
    color: var(--white);
}

@media (max-width: 591px) {
    .textelement__headline h1 {
        font-size: 2.2em !important;
    }
    #content-subpages #teaser-image {
        height: 45vh;
        align-items: baseline;
        padding-top: 8em;
    }
}