/* Contact Form Section */

.contact_section {
    width: 800px;
    height: 497px;
    padding: 2%;
    margin: 0 auto;
    font-size: 0.9em;
    font-family: rubik, 'open sans';
    font-weight: 700;
    display: grid;
    grid-template-columns: 2fr 9fr;
    grid-template-rows: 0.8fr 0.8fr 4fr;
    background-color: #ffe9e9;
    border-radius: 30px;
    padding: 2em 2em 1em 1em;
    gap: 50px;

}

.kontakt_headline {
    font-size: 48px;
    color: #24282A;
    display: flex;
    justify-content: center;
    margin-top: 100px;
}

.fa-asterisk {
    font-size: 10px;
    padding-left: 2px;
}

.contact_section label {
    grid-column: 1 / 2;
    text-align: right;
    border: none;
}

.contact_section input {
    grid-column: 2/3;
    border: none;
}

textarea#besked-retur {
    border: none;
}

/* Media queries Tablet */

@media screen and (max-width: 768px) {

    body, main, header, footer {
        max-width: 768px;
    }

#form.contact_section {
    width: 600px;
    margin: 0 auto;
}
}

/* Media queries Mobil */

@media screen and (max-width: 768px) {

    body, main, header, footer {
        max-width: 360px;
    }

    .contact_section {
        width: 340px;
        margin: 0 auto;
    }

    #form.contact_section {
        width: 320px;
        margin: 0 auto;
    }

    i.fa-asterisk {
        font-size: 6px;
    }
    .contact_section {
        gap: 30px;
    }
}
