.block-content {
    padding: 20px;

    ul {
        padding-left: 40px;
        list-style-type: square;
    }

    li::marker {
        color: #0ff;
    }

    p, ul {
        margin-bottom: 20px;
    }
}

.portfolio {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    justify-content: space-between;

    .project-content {
        display: flex;
        flex-direction: row;
        row-gap: 10px;
        justify-content: space-between;
    }

    .thumbnail {
        height: 315px;
        padding: 20px;
        padding-top: 0px;
    }
}

.project-content div {
    width: 100%;
}

.big {
    font-size: 24px;
}

h1, h2, h3 {
    margin: 0;
    padding: 0.2em;
    text-align: center;
}

h1 {
    font-size: 36px;
    color: #fff;
    text-shadow: 0px 0px 5px #fff;
    border-bottom: solid 1px;
    margin-bottom: 10px;
    border-image: linear-gradient(
        to right,
        transparent,
        white,
        transparent
    ) 1;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 16px;
}

@media(max-width: 1140px) {
    .portfolio {
        .project-content {
            flex-direction: column;
        }

        .thumbnail {
            width: 100%;
            height: 400px;
        }

        .block {
            padding: 20px;
        }
    }
}