body {background-color: black;
}



.about-div{
    width:100%;
    height: auto;
    padding: 20px;
    background-color: #202020;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
}
.blog-line{
    position: relative;
    width:100px;
    height: 8px;
   
    border-radius: 30px;
    left:0px;
}
.blog-txt a{
    text-decoration: none;
    color:white;
    font-size:40px;
  font-weight:bolder;
  font-family: 'Lemonada', cursive;
}
.about-div img{
    width:460px;
    height: 360px;
    border-radius: 5px;
    border:8px solid #aaa9ad;
    display: inline;
    margin-top: 10px;
    box-shadow: 0 3px 10px 0 rgba(100,100,100,.7);
    transition-duration: .5s;
}

.about-div img:hover{
    transform: scale(0.8);
}

.about-txt{
    width:60%;
    height: auto;
    font-size: 23px;
     color:white;
    font-family: 'Philosopher', sans-serif;
    line-height: 30px;
}
.about-txt a{
    text-decoration: none;
    font-size: 23px;
    color:white;
    margin-right: 20px;
}
@media screen and (max-width:768px){
  
.about-div{
    width:100%;
    height: auto;
    padding: 20px;
    background-color:  #202020;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
}
.about-div img{
    width:220px;
    height: 220px;
    border-radius: 5px;
    border:8px solid #aaa9ad;
    display: inline;
    margin-top: 20px;
    box-shadow: 0 3px 10px 0 rgba(100,100,100,.7);
    transition-duration: .5s;
}

.about-div img:hover{
    transform: scale(0.8);
}

.about-txt{
    width:80%;
    height: auto;
    font-size: 23px;
    color:white;
       font-family: 'Philosopher', sans-serif;
	text-align:"justify";

    line-height: 30px;
}
.about-txt a{
    text-decoration: none;
    font-size: 23px;
     color:white;
    margin-right: 20px;
  
}
}