
* { box-sizing: border-box;}


/* Style the container/contact section */
.containerContact
{
    display: grid;
    grid-template-columns: auto auto;
}


iframe
{
    padding-top: 40px;
    width: 600px;
    height: 500px;
    border: 0;
}

/* Style inputs */

input[type=text], select, textarea
{
    border-radius: 5px;
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    margin-top: 4px;
    margin-bottom: 16px;
    resize: vertical;
}

input[type=submit]
{
    background-color: #2351a5;
    color: whitesmoke;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    width: 120px;
    margin-left: 35%;
}

input[type=submit]:hover
{
    background-color:  #0d58e4;
}

/* Create two columns that float next to eachother */
.column
{
    float: right; 
    width: 90%;
    margin-top: 6px;
    padding: 30px;
    padding-left: 50px;
   
}

/* Clear floats after the columns */
.row:after
{
    content: "";
    display: table;
    clear: both;
}
/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */

@media screen and (max-width: 400px)
{
    .column, input[type=submit]
    {
        width: 100%; margin-top: 0;
    }
}
