body
    {
        margin: 0px;
        padding: 0px;
        font-family: Arial, sans-serif;
        background-image: url(images/landingbkg.png);
        background-repeat: no-repeat;
        background-attachment: fixed; 
        background-size: 100% 100%;
        width: 100%;
        color: #ffffff;
    }

main
    {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        text-align: center;

    }

section
    {
        grid-column: 2 / 3;
    }
img
    {
        width: 300px;
    }

a
    {
        color: #ffffff;
        text-decoration: none;
    }

a:hover
    {
        text-decoration: underline;
    }