#about {
    display: flex;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
    background-image: url(/assets/HomeBackDrop.jpeg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    mix-blend-mode: overlay;
    background-attachment: fixed;
    opacity: 0.22;
}

#about-content {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2;
}

#pic {
    background-image: url(/assets/pic.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

#about h1 {
    font-size: 250%;
    font-weight: 700;
}

#about h4 {
    color: var(--green);
    font-size: 70%;
    font-weight: 600;
    font-style: italic;
}

#about p {
    font-size: 60%;
    margin: 15px auto;
    font-weight: 500;
}

#about-btns {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#about-btns button {
    font-weight: 700;
    font-size: 70%;
    font-style: italic;
    padding: 15px 0px;
    margin: 0 10px;
    border: none;
    background: var(--blueGradient);
    color: white;
    width: 30%;
    outline: none;
    transition: .3s;
    border-radius: 5px;
}

#about-btns button i {
    margin: 0 5px;
}