@media (min-width: 700px) {
    /*CZCIONKA*/
    * {
        font-size: calc(1rem + 0.5vw);
    }

    /*TLO*/
    body {
        display: flex;
        flex-direction: column;

        min-height: 100vh;
        margin: 0;
        padding: 0;

        background-color: #000;
        background-image: radial-gradient(circle at top left, rgba(0, 123, 255, 0.2), transparent 900px),
        radial-gradient(circle at 100vw 65vh, rgba(0, 123, 255, 0.2), transparent 600px);
        background-repeat: no-repeat;
    }

    /*HEADER*/
    header {
        display: flex;
        justify-content: space-between;
        align-items: center;

        height: 7vh;
        margin: 1vh 5% 0 5%;
    }
    nav a {
        display: inline-block;
        font-size: 80%;
        margin-left: 1.5vw;
        transition: 300ms ease-in-out;
    }
    nav a:hover {
        color: #00bfff;
        font-size: 90%;
        transform: rotate(3deg);
    }
    nav .active {
        color: #00bfff;
    }

    /*BODY*/
    .contact {
        margin: 5vh 5%;
        display: flex;
        flex-direction: column;
        border: none;
        outline: none;

        /*background: cornflowerblue;*/
    }
    .contact form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5vh;
    }
    .contact .contact-inputs {
        border: none;
        outline: none;
        border-radius: 15px;
        padding: 15px;
        background-color: #f0f0f0;
    }
    .contact h2 {
        font-size: 140%;
        margin-bottom: 2vh;
    }
    .contact form input {
        width: 70vw;
        color: #000000;
        font-size: 75%;
    }
    .contact form textarea {
        width: 70vw;
        height: 25vh;
        color: #000000;
        font-size: 75%;
    }
    .contact form button {
        margin-top: 2vh;
        outline: none;
        border: none;
        width: 12vw;
        height: 6vh;
        border-radius: 15px;
        background-color: rgba(0, 123, 255, 0.4);
        color: #fff;
        transition: all 300ms ease-in-out;
    }
    .contact form button:hover {
        scale: 1.15;
        cursor: pointer;
    }

    /*FOOOTER*/
    footer {
        padding: 20px 10px;

        display: flex;
        justify-content: center;
        align-items: center;

        height: 6vh;
        margin-top: auto;
    }

    footer .instagram img {
        width: 5vh;
        filter: invert(100%);
        transition: 200ms ease-in-out;
    }

    footer .instagram img:hover {
        width: 6vh;
        height: 6vh;
    }
}