@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*/
    .intro {
        margin: 8vh 5% 0 5%;
        /*padding: 0 10vw 0 5vw;*/
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .intro h1 {
        font-size: 110%;
        margin-bottom: 3vh;
        margin-left: 3vw;
        text-align: left;
    }
    .intro p {
        font-size: 90%;
        margin-left: 3vw;
        color: #a0a0a0;
    }
    .intro .photo img {
        width: 20vw;
        border: 7px solid #eee;
        margin-right: 10vw;
    }

    .skills {
        margin: 0 5% 0 5%;
        display: flex;
        flex-direction: column;
    }
    .skills h2 {
        color: #87CEEB;
        font-size: 90%;
        margin-left: 3vw;
    }
    .skills .icons {
        margin-top: 2vh;
        margin-left: 3vw;
        display: flex;
        gap: 20px;
    }
    .skills .icons img {
        width: 2.5vw;
    }

    .projects {
        margin: 4vh 5% 0 5%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .projects h2 {
        color: #87CEEB;
        margin-bottom: 1vh;
    }

    /*FOOOTER*/
    footer {
        padding: 20px 10px;

        display: flex;
        justify-content: center;
        align-items: center;

        height: 6vh;
        /*height: 60px;*/
        margin-top: auto;
    }

    footer .instagram img {
        /*width: 48px;*/
        /*height: 48px;*/
        width: 5vh;
        filter: invert(100%);
        transition: 200ms ease-in-out;
    }

    footer .instagram img:hover {
        /*width: 55px;*/
        /*height: 55px;*/
        width: 6vh;
        height: 6vh;
    }
}