.about-container
{
    min-height: 300px;
    height: auto;
    min-width: 100%;
    width: 100%;
    left: 0;
    background-color: rgb(237, 237, 237);
    box-shadow: 0px 0px 24px -7px rgba(66, 68, 90, 1);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    padding-top: 10px;
}
.about-title
{
    color: black;
    font-family: 'Bebas Neue', cursive;
    font-size: 50px;
}
.about-content
{
    color: black;
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    text-align: center;
    width: 90%;
}
@media only screen and (max-width: 900px)
{
    .about-title
    {
        font-size: 32px;
    }
    .about-content
    {
        font-size: 17px;
    }
}