#about-information {
    padding: 36px 16px;
    padding-left: 5%;
    background: #130512;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#about-information h1 {
    color: white;
    font-size: 48px;
}
#about-information p {
    margin-top: 32px;
    color: #c37dbd;
    width: 70%;
    line-height: 28px;
}
#about-information p:first-child {
    margin-top: 72px;
}
#about-information p a {
    color: #ffcbfb;
    text-decoration: none;
    transition: .3s;
}
#about-information p a:hover {
    color: #ffffff;
    text-decoration: none;
    transition: .3s;
}

@media screen and (max-width: 975px) {
    #about-information p {
        width: 99%;
    }
}