.about {
    width: 100%;
    background-image: url("/img/moodboard.png");
    background-color: #e9e8e8e8;
    background-blend-mode: soft-light;
    background-size: cover;
    background-position: center;
    background-repeat: repeat-y;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    max-width: 1500px;
    margin: 90px auto;
}

.about-img{
   width: 90%;
   max-width: 700px; 
   border-radius: 10%;
}

.about-info {
    text-align: left;
    margin: 25px 0;

}

.about-name {
font-size: 35px;
font-weight: 700;
margin: 0;
color: var(--primary-color);
}

.about-details {
    font-size: 22px;
    line-height: 1.3;
    max-width: 650px;
}

.about-btn {
  background-color: var(--primary-color);
  color: var(--text-color);
  border: none;
  font-size: 20px;
  padding: 0.7em 1.3em;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 130px;
  font-family: 'Montserrat', sans-serif;
}

.about-btn:hover {
    background-color: #3d3d3d;
}