#id_sonstwas {
    padding: 20px 0px;
    background-color: aliceblue;
}

#id_sonstwas h1 {
    font-size: 30px;
    text-align: center;
}

.flex_container {
    margin-top: 10px;
    margin-bottom: 20px;
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    width: 300px;
    max-width: calc(90%-30px);
    background-color: lightblue;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    hyphens: none;
}

.card a {
    background-color: lightblue;
    text-decoration: solid;
    font-weight: bold;
    text-align: center;
    padding-bottom: 10px;
}

.card img {
    border-style: solid;
    border-width: 10px;
    border-color: lightblue;
    width: 90%;
    transition: 150ms ease-in-out;
}

.card img:hover {
    border-width: 10px;
    border-color: aliceblue;
}

.card a:hover {
	color: aliceblue;
    background-color: darkslateblue;
	font-weight: bold;
    padding: 10px; 
}

@media(max-width: 1080px) {
    #id_sonstwas h1 {
        font-size: 4vw;
    }
}
