.contactbigbtn{
    background-color: #69DC9E;
    color: black;
    font-family: monospace;
    border-radius: 5px;
    padding: 40px 20px;
    width: 200px;
    height: 120px;
    border: white 2px solid;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    margin: 15px auto;
    transition: all 0.5s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 300;
}

.contactbigbtn:hover {
    animation: ease-in;
    transform: scale(1.03);
    transition: 0.5s;
}

body {
    background-color: #2b2b2bfe;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

main {
    flex-grow: 1;
}

.contact-buttons-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

@media (min-width: 768px) {
    .contact-buttons-container {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }
}

footer {
    flex-shrink: 0;
    width: 100%;
    margin-top: 40px;
}

/* Habe meine Formulare aus einem meiner anderen Projekte übernommen, daher sind die Forumlarfelder nicht ganz
zur Designsprache meiner Webseite passend, aber bald kommen neue */

#submitbuttonform{
    margin-top: 0.5rem;
    width: 100%;
    font-weight: 640;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #69DC9E;
    border: none;
    box-shadow: #2b2b2bfe 0px 0px 10px 0px;
    border-radius: 6px;
    margin-bottom: 4px;
}

input{
    padding: 0.5rem;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    width: 100%;
    box-sizing: border-box;
}

#message{
    padding: 0.5rem;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    width: 100%;
    box-sizing: border-box;
}

input {
    margin-bottom: 1.7px;
}

input:user-valid, #message:user-valid {
    border: 1px solid green;
}

input:user-invalid, #message:user-invalid {
    border: 1px solid red;
}

.Datenschutz {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.Datenschutz input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
    accent-color: #69DC9E;
    border-radius: 3px;
    border: 1px solid #ddd;
}

.Datenschutz label {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: white;
    font-size: 14px;
    line-height: 1.4;
    flex: 1;
    min-width: 200px;
    cursor: pointer;
}

* {
    margin-left: 3px;
    margin-right: 3px;
}