.descSection
{
    width: 50%;
    margin: auto;
    margin-top: 20px;

    text-align: center;
}

.descTitle
{
    font-size: 50px;
    margin-bottom: 10px;

    font-family: 'Salsa', 'Noto Sans', 'sans-serif';
}

.descContent
{
    font-size: 20px;
}

@media only screen and (max-width: 1000px) 
{
    .descSection
    {
        width: 80%;
    }

    .descTitle
    {
        font-size: 7vw;
    }

    .descContent
    {
        font-size: 2vw;
    }
}

@media only screen and (max-width: 600px) 
{
    .descSection
    {
        width: 90%;
    }

    .descTitle
    {
        font-size: 18px;
    }

    .descContent
    {
        font-size: 14px;
    }
}