.parent {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

header {
    margin-bottom: 0%;
}

.centered {
    z-index: 2;
    text-align: center;
    background-color: #ffaca4;
    width: 83%;
    margin-top: 0px;
    padding: 20px;
    position: absolute;
}

button {
    margin-bottom: 30px;
}

.roundborder {
    position: relative;
    top: 100px;
    background: url(../img/roundshapeborder.png);
    background-size: contain;
    height: 100px;
    z-index: 1;
}

.roundborderfooter1 {
    background: url(../img/roundshapetrans.png);
    position: relative;
    background-size: contain;
    height: 60px;
}

/* CONTACT FORM */

form {
    color: #6d1f34;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding: 50px;
    background-image: url(../img/purrfactscats.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    min-height: 600px;
}

label {
    padding: 12px;
    display: inline-block;
    text-align: right;
}

input[type=text],
select,
textarea {
    width: 500px;
    padding: 12px;
    border: 1px solid #ffaca4;
    background-color: #ffaca4;
    border-radius: 10px;
    font-family: "Comfortaa", sans-serif;
    text-align: left;
    color: #6d1f34;
}

.form {
    margin: 10px;
    width: 100%;
    text-align: right;
    display: block;
}

button {
    position: relative;
    top: 30px;
    margin-left: 48%;
}

.query {
    height: 200px;
}

/* RESPONSIVE */
@media screen and (max-width: 600px) {

    form {
        display: flex;
        margin: 10px;
        align-items: center;
        flex-direction: column;
        justify-content: space-between;
        background-size: 600px;
        background-repeat: no-repeat;
        background-position: bottom;
        margin-top: 50px;
    }

    .centered {
        justify-content: center;
        width: 91%;
        max-width: 600px;
    }

    label {
        display: flex;
        flex-direction: column;
        text-align: left;
    }

    button {
        align-items: center;
        display: flex;
    }

    .query {
        height: 50px;
    }

    input[type=text],
    select,
    textarea {
        width: 100%;
    }

    .roundborder {
        top: 90px;
    }
}