.background {
    background-color: #193060;
    margin: 0;
    padding-top: 50px;
    overflow: hidden;
}

p a {
    font-family: "Roboto Flex", sans-serif;
}

input[type="submit"] {
    font-family: "Bona Nova", serif;
    font-weight: 400;
    font-size: 20px;
    color: #FFCE48;
    background-color: #AB141C;
    padding: 10px 20px;
    min-width: 140px;
    border: none;
    cursor: pointer;
    margin: auto;
}

input[type="submit"]:hover {
    background-color: #193060;
}

.contact {
    margin: 116px auto;
    text-align: left;
    width: 70%;
    position: relative;
    z-index: 1;
}

.contacttitle {
    border-bottom: white 1px solid;
    padding-bottom: 10px;
}

.contactbox {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input {
    font-family: "Roboto Flex", sans-serif;
    font-weight: 200;
    font-size: 20px;
    color: #1C0A0A;
    background-color: white;
    padding: 22px 35px;
}

input::placeholder {
    font-size: 16px;
    color: #1C0A0A;
    opacity: 1;
}

.short {
    display: flex;
    gap: 20px;
    width: 100%;
}

.short input {
    width: 100%;
    box-sizing: border-box;
}

textarea {
    font-family: "Roboto Flex", sans-serif;
    font-weight: 200;
    font-size: 20px;
    color: #1C0A0A;
    background-color: white;
    padding: 22px 35px;
    height: 240px;
}

textarea::placeholder {
    font-size: 16px;
    color: #1C0A0A;
    opacity: 1;
}

.cloud {
    position: absolute;
    right: -40%;
    top: -140px;
    z-index: -1;
}

.cloud:nth-child(2) {
    position: absolute;
    right: 80%;
    top: 40%;
    z-index: -1;
}

.cloud:nth-child(3) {
    position: absolute;
    transform: scaleX(-1);
    right: -40%;
    top: 80%;
    z-index: -1;
}

/* Tablet and mobile styles */
@media screen and (max-width: 1080px) {
    .contact {
        margin: 60px auto;
    }

    input {
        font-size: 16px;
        padding: 15px 25px;
    }

    input[type="submit"] {
        min-width: 112px;
        font-size: 16px;
    }

    textarea {
        font-size: 16px;
        padding: 15px 25px;
        height: 240px;
    }

    .cloud {
        position: absolute;
        right: -410px;
        top: -110px;
        z-index: -1;
    }

    .cloud:nth-child(2) {
        position: absolute;
        left: -60%;
        top: 40%;
        z-index: -1;
    }

    .cloud:nth-child(3) {
        position: absolute;
        transform: scaleX(-1);
        right: -40%;
        top: 78%;
        z-index: -1;
    }
}

/* Mobile styles */
@media screen and (max-width: 600px) {
    .short {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    input {
        padding: 10px 20px;
    }

    textarea {
        padding: 10px 20px;
        height: 240px;
    }

    input::placeholder {
        font-size: 12px;
    }

    textarea::placeholder {
        font-size: 12px;
    }

    .cloud {
        position: absolute;
        right: -330px;
        top: -90px;
        z-index: -1;
    }

    .cloud:nth-child(2) {
        position: absolute;
        left: -65%;
        top: 42%;
        z-index: -1;
    }

    .cloud:nth-child(3) {
        position: absolute;
        transform: scaleX(-1);
        right: -70%;
        top: 90%;
        z-index: -1;
    }
}