#works {
    color: var(--white);
}

.jobs {
    display: flex;
    flex-direction: column;
}

.jobs .job {
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(5px);
    padding: 20px;
    border-radius: var(--radius);
    margin: 20px 10px;
    font-size: 18px;
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: var(--transition);
}

.jobs .job:hover {
    scale: 1.02;
    background: rgba(255, 255, 255, .1);
}

.jobs .job h3 {
    font-variant: all-small-caps;
    font-size: 24px;
}

.jobs .job a {
    margin: 8px 0;
    color: var(--white);
    text-decoration: underline;
}

.jobs .job p {
    margin: 8px 0;
}

.jobs .job .explanation {
    text-indent: 32px;
    text-align: justify;
}

@media (width < 800px) {

    #WorksPart {
        padding: 0;
        width: 100%;
    }

    #WorksPart h2 {
        text-align: center;
    }

    .jobs {
        width: 100%;
        margin: 0;
    }

    .jobs .job {
        border-radius: var(--radius);
        font-size: 18px;
        transition: var(--transition);
    }
}