h1 {
    text-align: center;
}

h3 {
    text-align: center;
    font-size: 1.5em;
}

.personal-content {
    -webkit-animation-name: personal-content;
    -webkit-animation-duration: 2s;
    animation-name: personal-content;
    animation-duration: 2s;
    position: relative;
    line-height: 2em;
}
  
@-webkit-keyframes personal-content {
    from { bottom:-100px; opacity:0 } 
    to { bottom:0px; opacity:1 }
}
  
@keyframes personal-content { 
    from{ bottom:-100px; opacity:0 } 
    to{ bottom:0; opacity:1 }
}

.about-content {
    padding: 20px 20px 25px;
    font-size: 0.9em;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    margin: auto;
}

@media screen and (max-width: 1200px) {
    .personal-content {
        line-height: 1.5em;
    }

    .about-content {
    font-size: 0.75em;
    text-align: left;
    width: 75%;
    }
}

@media screen and (max-width: 500px) {
    .about-content {
    font-size: 0.6em;
    text-align: left;
    }
}
