body {
    height: 100vh;
    margin: 0;
}

.about-container {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 106px - 291px);
}

.about-border {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 1300px;
    align-items: flex-start;
}

.text-block-about {
    margin: 0 10px 0 10px;
}

.title-text-about {
    text-align: left;
    margin-bottom: 10px;
    font-size: 18.72px;
}

.description-text-about {
    font-weight: 100;
    margin-bottom: 10px;
    font-size: 16px;
}

.picture-about {
    border-color: white;
    border-width: 5px;
    border-radius: 10px;
    box-shadow: rgb(150, 150, 150) 1px 1px 23px 4px;
    margin: 0 10px 0 10px;
}

.list {
    margin-left: 18px;
}

@media (max-width: 1320px) {
    .about-border {
        margin-left: 15px;
        margin-right: 15px;
    }
    .text-block-about {
        margin-left: 0;
        margin-right: 0;
    }
    .picture-about {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 810px) {
    .about-border {
        flex-direction: column;
    }
}

@media (max-width: 448px) {
    .about-border {
        width: 100%;
        flex-direction: column;
    }
    .picture-about {
        width: 100%;
        height: auto;
    }
}