*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body{
  margin: 0;
}
.lf{
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;

}
.text{
  width: 50%;
  height: auto;
  padding: 50px;
  background-color: transparent;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
}
.art{
  width: 50%;
  height: auto;
  display: flex;
align-items: center;
justify-content: center;
}
.art img{
  margin-top: 20px;
width: 50%;
height:50%;
border-radius: 20px;

}

.name{
  font-size: 65px;
}
.about{
  width: 100%;
  height: auto;
  padding: 20px;
  font-size: 2vw;
}
#color{
  background: url(../img/finalbg.jpg);
  background-position: center;
  background-size: cover;
}

@media (max-width:768px) {
  .lf{
    flex-direction: column;
    height: auto;
  }
  .text{
    width: 100%;
    height: auto;
    padding: 30px;
  }
  .art{
    width: 100%;
    height: auto;
    padding: 0;
  }

  .art img{
    width: 70%;
    height: auto;
  }
  .about{
    height: auto;
    padding: 20px;
  }
}