.content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;

    padding: 150px 0% 0 0%;
}

* {
    --element-height: 50px;
}

.top {
    color: white;
    font-size: 50px;
    height: 50px;
}

.down {
    margin-top: 20px;
    color: white;
    font-size: 30px;
}

#zawod {
    display: inline-block;
    opacity: 0;
}

.zawod {
    text-align: center;

    margin-top: 50px;

    background-color: #555555;
    color: white;
    font-size: 80px;
    width: 50vw;

    padding: 15px 5vw 15px 5vw;
    border-radius: 50px;
}

.skills {
    margin-top: 20px;
    border-width: 0;
    display: flex;
    gap: 1vw;
    width: 60vw;
    flex-wrap: wrap;
    height: 50vh;
}

.skills > div {
    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #e3e3e3;
    padding: 15px;
    border-radius: 30px;
    border-width: 0;

    width: calc((60vw - (1vw * 2) - (30px * 3 )) / 3);
}

.linia {
    width: 50px;
    background-color: #e3e3e3;
    height: var(--element-height);
}

/* uwu */

.img {
    height: 20vh;
    margin: 15px;
    border-radius: 15px;
}

a {
    color: black;
}

a:visited {
    color: black;
}

.center {
    padding: 50px;
    align-content: center;
}

/* uwu */

.kulka {
    width: 100px;
    height: 100px;
    background-color: #e3e3e3;

    border-radius: 50%;
}

.element.right {
    transform: translate(calc(50% - 50px));
}

.element.left {
    transform: translate(calc(-50% + 50px));
}

.element {
    display: flex;
    gap: 100px;

    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.elementcontent {
    width: calc(((100vw - (2 * 15vw)) - (2 * 5vh) - (15px * 2)) / 2);
    display: flex;
    background-color: #e3e3e3;
    padding: 15px;
    border-radius: 25px;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    /*margin-right: 100px;*/

    margin: 50px 0 50px 0;
}

.liniabox {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
}

.liniaelement {
    display: flex;
    flex-direction: column;
    /*justify-content: center;*/
    align-items: center;
    margin-top: 30px;
}

@keyframes animation {
    0% {
        opacity: 0;
        transform: translate(-10vw);
    }

    45% {
        opacity: 1;
        transform: translate(0);
    }

    55% {
        opacity: 1;
        transform: translate(0);
    }

    100% {
        opacity: 0;
        transform: translate(10vw);
    }
}