@import "colorScheme.css";

#about{
    width: 100%;
    height: auto;
    min-height: 700px;
    background-color: var(--about-bg);
}

.about-title{
    width: 100%;
    height: 10vh;
    text-align: center;
    color: var(--title-text-color);
    line-height: 10vh;
}

.about-content{
    display: flex;
    flex-basis: 100%;
    min-height: 90vh;
    height: auto;
    justify-content: center;

}

.about-picture{
    display: flex;
    width: 40%;
    height: 90vh;
    /* background: var(--secondary-color); */
    
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
}


.about-picture-circle{
    border: 2px solid var(--border-primary-color);
    border-radius: 50%;
    overflow: hidden;
    display: inline-block;
    background: var(--gradient-primary);
    max-height: 70vh;
    max-width: 70vh;
}

.about-picture img{
    max-height: 77vh;
    max-width: 77vw;
    position: relative;
    left: -20px;
    object-fit: cover;
    object-position: center;
}

.about-intro{
    width: 55%;
    height: 100%;
    padding: 10vh 5vw;
}

.about-intro h1{
    margin-bottom: 1vh;
}

.about-intro  a{
    display: inline-block;
    height: 35px;
    width: 120px;
    text-align: center;
    margin-top: 25px;
    padding-top: 10px;
    border-radius: 5px;
    
    background: var(--link-bg-color);
    color: var(--link-color);
    border-radius: 7px;
    cursor: pointer;
    text-decoration: none;
}