
h2 {
    color: dimgrey;
    font-size: 40px;
    text-align: center;
}

.image {
    left: 0;
    position: relative;
    max-height: 400px;
    max-width: 370px;
    height: 100%;
    width: 100%;
}

h1 {
    color: dimgrey;
    font-size: 40px;
}

p {
    font-size: 13pt;
}

/* For mobile phones */
@media screen and (max-width: 600px) {
    [class*="col"] {
        width: 100%;

        /* since in mobile columns are 100%, we cannot have margin-left in the columns*/
        margin-left: 0;
    }

    h2 {
        margin-left: 5px;
    }

    h1 {
        margin-left: 75px;
    }

    p {
        margin-left: 20px;
        margin-right: 20px;
    }
}
