/* Place your CSS styles in this file */
body {
    background-color: indigo;
    color: goldenrod;
    margin: 10px;
    padding: 10px;
    text-align: center;
    font-family: sans-serif;
}

h1 {
    font-size: 200%;
}
p {
    font-size: 150%;
    font-weight: bold;
}
a:link {
    color: gold;
    text-decoration: none;
}
a:visited {
    color: yellowgreen;
    text-decoration: none;
}
a:hover, a:active {
    color: mediumpurple;
    text-decoration: underline;
}