/* css styles */
/* Photo on homepage */

.profile-photo {
  float: right;
  width: 300px;
  max-width: 35%;
  margin: 0 0 1.5rem 2rem;
  border-radius: 10px;
}

/* Mobile */

@media (max-width: 768px) {
  .profile-photo {
    float: none;
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 1.5rem auto;
  }
}