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

body {
    margin: 25px;
    background-color: greenyellow;
    font-family: Verdana, sans-serif;
    font-size: 12px;
}

/* Applies to all <h1>...</h1> elements. */
h1 {
    font-size: 35px;
    font-weight: normal;
    margin-top: 5px;
}


p {
    color: blue;
    font-family: "Adobe Garamond Pro";
    font-size: 24px;
    font-weight: bold;
}

/* Applies to all elements with <... class="someclass"> specified.
.someclass { color: red; }

 Applies to the element with <... id="someid"> specified.
#someid { color: green; }
*/