main
{
    max-width: 750px;
    padding: 20px;
    margin: auto;
}

.info
{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 10px;
}

.info h1
{
    margin-top: 0;
}

.info p
{
    font-family: Montserrat, sans-serif;
    font-size: 1.2em;
    color: black;
}

.info ul
{
    color: gray;
    padding: 0;
    margin-bottom: 0;
    display: grid;
    grid-template-columns: auto auto;
}

.info li
{
    display: block;
    white-space: nowrap;
    padding: 10px;
}

.info i
{
    width: 30px;
    text-align: center;
}

.info img
{
    margin-left: 100px;
}

h2
{
    margin-top: 40px;
}

table
{
    width: 100%;
    border-spacing: 0;
}

table tr:nth-child(2n-1)
{
    background-color: whitesmoke;
}

td
{
    width: 50%;
    white-space: nowrap;
    padding: 12px;
}

table p
{
    margin: 0;
}

table p:first-child
{
    color: black;
}

table p:nth-child(2)
{
    margin-top: 4px;
    font-size: 0.9em;
}

@media (max-width: 479px)
{
    .info
    {
        flex-direction: column;
    }

    .info img
    {
        margin-left: 0;
        margin-bottom: 50px;
        order: -1;
    }
}

@media (max-width: 767px)
{
    .info ul
    {
        grid-template-columns: 100%;
        grid-template-rows: 25% 25% 25% 25%;
    }
}
