:root {
  --font-color: rgb(49, 24, 95);
  --font-color-secondary: rgb(107, 91, 168);
}

.top-header{
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 150px;
    padding-bottom: 150px;
    margin-top: 100px;
/*     background-color: #deb4fa;
    background-image: url("/images/top-header.jpg"); */
background: #C8A7DC;
background: linear-gradient(180deg, rgba(200, 167, 220, 1) 0%, rgba(200, 167, 220, 0.51) 26%, rgba(255, 255, 255, 1) 100%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}
.top-header .about-me-header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.top-header .about-me-header h2 {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 40px;
    color: var(--font-color);

}
.top-header .about-me-header h1 {
    font-weight: bold;
    font-size: 40px;
    color: var(--font-color-secondary);
    text-transform: uppercase;

}
.aboutme {
    width: 100%;
    padding-top: 150px;
    padding-bottom: 150px;
    background-color: white;
    /* background: #D7CAE8;
    background: linear-gradient(265deg, rgba(215, 202, 232, 0.21) 0%, rgba(255, 255, 255, 1) 100%); */
}
.aboutme span{
   text-transform: uppercase;
}
.aboutme i {
    font-size: 24px;
    padding: 20px;
}
.aboutme .social-profile {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin-top: 10px;
}
.aboutme .plr-100 {
    padding-left: 50px;
    padding-right: 50px;
}
@media only screen and (min-width:320px) and (max-width:768px) {
    .aboutme {
        padding-top: 50px;
    }
    .top-header {
        padding-top: 50px;
        padding-bottom: 50px;
        height: 150px;
    }
    .top-header .about-me-header h1{
        font-size: 30px;
    }
    .top-header .about-me-header h2{
        font-size: 30px;
    }
}
