.yeah__content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 40px;
    margin-bottom: 70px;
}

.yeah__title {
    font-family: 'MontserratAlternates', sans-serif;
    font-weight: 600;
	font-size: 62px;
	color: var(--black-color);
}

.aleks-img {
    height: 520px;
    border-radius: 30px;
    box-shadow: 0 0px 17px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.arrow-img {
    height: 240px;
    user-select: none;
    pointer-events: none;
}


/* ТЕПЕРЬ КОНКРЕТНО ОБО МНЕ */
.about {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 40px;
    margin-bottom: 40px;
}

.about__title {
    font-family: 'MontserratAlternates', sans-serif;
    font-weight: 600;
	font-size: 62px;
    margin-bottom: 30px;
	color: var(--black-color);
}

.about__content-text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

.about-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
	font-size: 18px;
	color: var(--black-color);
}


/* МОЕ ЛИЧИКО :) */
.mypic__content {
    width: 100%;
    margin: 0 auto;
    padding: 20px 40px;
}

.mypic__content-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.mypic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 21px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.mypic-img:hover {
    transform: scale(1.02);
    box-shadow: 0 0px 24px rgba(0, 0, 0, 0.75);
}

.mypic__content-button-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.mypic-button {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    padding: 13px 60px;
	border: 2px solid var(--black-color);
    color: var(--black-color);
	transition: all 0.9s;
	border-radius: 0px;
}

.mypic-button:hover {
	color: var(--blue-color);
	border-color: var(--blue-color);
	border-radius: 100px;
}