div.top {
    display: flex;
    width: 100%;
    height: 100%;
    padding-block: 10rem;
    gap: 2rem;
    margin: -2rem auto 0 auto;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    user-select: none;
    overflow: hidden;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.overlayImg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(0deg, rgba(236, 236, 236, 1) 0%, rgba(246, 246, 246, 0.5) 35%, rgba(255, 255, 255, 0) 75%);
}

.overlayImg {
    background-color: rgb(0, 0, 0);
    width: 100%;
    height: 100%;
}

div.top > img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

img.profileImg {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 100%;
    opacity: 1;
    border: 5px solid black;
}

div.textCont {
    width: 80%;
    margin: 0 auto;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    z-index: 5;
}

.profile-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}

.textCont h2.name {
    width: 100%;
    font-size: 2.5rem;
    margin: 0 auto;
    color: white;
    text-align: center;

	&:hover {
		filter: none;
	}
}

div.top .textCont > p {
    text-align: center;
    width: 100%;
    padding: 1rem;
    margin: 0 auto;
    color: white;
    font-weight: bolder;
    font-size: 1.2rem;
    letter-spacing: 2px;
    z-index: 1;
}

div.top .textCont .about-description strong {
    color: var(--blue-color);
	font-weight: inherit;
}

@media screen and (max-width: 1000px) {
    img.profileImg {
        width: 250px;
        height: 250px;
    }
}

@media screen and (max-width: 800px) {
    div.top .textCont > p {
        margin: 0 auto;
        padding: 0;
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 600px) {
    div.top > p {
        width: 80%;
        padding: 0 1rem;
        font-size: 1.5rem;
    }

    img.profileImg {
        width: 200px;
        height: 200px;
    }

    h2.name {
        font-size: 2rem;
    }

    div.top .textCont > p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 350px) {
    img.profileImg {
        width: 150px;
        height: 150px;
    }

    h2.name {
        font-size: 1.8rem;
    }

    div.top .textCont > p {
        font-size: 0.8rem;
    }
}

