body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#about {
    width: 100%;
    max-width: 800px;
    background-color: #ffffff;
    box-shadow: 0px 0px 10px rgb(198, 198, 198);
    padding: 20px;
    border-radius: 30px;
    position: relative;
    top: -200px;
    margin-bottom: -200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    color: #333;
    text-align: center;
}
p {
    color: #666;
}
@media only screen and (max-width: 1024px) {
    #about {
        position: static;
        margin-bottom: 10px;
        width: 95%;
    }
}