
#home-main {
  position: relative;
  height: 75vh;
  background-color: #bc6ff1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

#profile img {
  height: 250px;
  width: 250px;
  border-radius: 50%;
  transform: translateX(-10%);
  border:5px solid #52057b;
  animation: appear 3s;
  transition: 1s;

}

@keyframes appear{
  from{
    height:50px;
    width: 50px;
    opacity: 0%;
    border:1px solid #52057b;
  }
  to{
    height: 250px;
    width: 250px;
    opacity: 100%;
    border:5px solid #52057b;
  }
}

#profile img:hover {
  height: 270px;
  width: 270px;
  border-radius: 50%;
  transform: translateX(-10%);
  border:5px solid #52057b;
  transition: 1s ;
  transition-timing-function: ease-in-out;
}
#greetings {
  margin-right: 120px;
}

#greetings p {
  font-size: 3rem;
  font-weight: 800;
  color:#52057b;
  animation: anim-left 3s;
}

@keyframes anim-left{
    from{
        transform: translateX(80%);
        opacity:0;
    }
    to{
        transform: translateX(0%);
        opacity: 1;
    }
}

#content{
 display:flex;
 justify-content: space-between;
 margin-top: 20px;
}
.skills, .accomplishments{
display: flex;
flex-direction: column;
flex-wrap: wrap;
}


/*---------Mobile View----------------*/

@media only screen and (max-width: 500px) {

  #home-main{
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
  height: 50vh;

  }
  #profile img {
    height: 150px;
    width: 150px;
    border:4px solid #52057b;
    animation: appear-mob 3s;
  }
  @keyframes appear-mob{
    from{
      height:50px;
      width: 50px;
      opacity: 0%;
      border:1px solid #52057b;
    }
    to{
      height: 150px;
      width: 150px;
      opacity: 100%;
      border:5px solid #52057b;
    }
  }

  #greetings {
    margin-right: 0px;
  }
  
  #greetings p {
    font-size: 2rem;
    font-weight: 800;
    color:#52057b;
    animation: anim-down 3s;
  }
  @keyframes anim-down{
    from{
        transform: translateY(-50%);
        opacity:0;
    }
    to{
        transform: translateY(0%);
        opacity: 1;
    }
}
  
#content{
  flex-direction: column;
  text-align: center;
  margin-top: 20px;
 }
 
 .skills, .accomplishments{
   margin-bottom: 35px;
 }


}
