@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 {
        display: flex;
        justify-content: center;
        margin: 4vh 5% 0 5%;
    }
    .intro h1 {
        font-size: 140%;
    }

    .gallery {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        margin: 4vh 5% 3vh 5%;
        gap: 2vw;
    }
    .gallery .photo {
        position: relative;
        margin: 1vh 0;
    }
    .gallery .photo img {
        border-radius: 8%;
        max-width: 15vw;
    }
    .gallery .photo .programs {
        position: absolute;
        bottom: -2vh;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 0.5vw;
    }

    .gallery .photo .programs img {
        width: 3.5vw;
    }

    /*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;
    }
}