@charset "UTF-8";
/* CSS Document */

body {
    margin: 0;
    padding: 0;
    background-color: #efebe9;
    font-family: Arial, sans-serif;
    text-align: center; /* centers inline elements horizontally */
}

.logo {
    display: block;       /* makes the image a block so margin auto works */
    margin: 40px auto 20px auto; /* top 40px, bottom 20px, horizontal auto */
    max-width: 200px;
    height: auto;
}


