.full-nav ul li:nth-child(2){
    text-decoration: underline;
}
.about img{
    width: 100vw;
    box-shadow: 10px 10px 5px 2px #a6776aaf;
    border-radius: 5px;
}
.about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 20px 0px 20px 0px;
    animation: fadeIn 2s;
}

.about p {
    padding: 10px;
    margin-top: 10px;
    font-size: large;
}

@media only screen and (min-width: 800px){
    .about{
        width: 800px;
        margin: auto;
    }
    .about img {
        width: 800px;
    }

}

@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1}
}