/* Allgemein */

.kontakt i {
    font-size: 12px;
}

.link-agb a {
    font-weight: 700;
}

/* Layout */

main {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 10rem;
}

/* Kontaktformular */

.kontakt form {
    display: grid;
    gap: 1rem;
}

.kontakt form {
    display: flex; 
    flex-direction: column; 
}

.kontakt button {
    color: #150422;
    padding: 0.7rem 1.2rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.kontakt button:hover {
    background: #150422;
    color: white;
}

.kontakt input,
.kontakt textarea {
    padding: 0.5rem;
    font: inherit;
    border: 1px solid #ccc;
    border-radius: 6px;
}

/* Impressum */

@media (min-width: 1024px) {
    main {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
}