@charset "iso-8859-1";
/* CSS Document */
@import url(http://fonts.googleapis.com/css?family=Lato:400,700,900);

body{
    background-color: darkseagreen;
    font-family: 'Lato', sans-serif;
}

h1{
    color: white;
    font-size: 30px;
    font-weight: 900;
    text-align: center;
}

main{
    margin: 0 auto;
    background-color: snow;
    padding:20px;
    width: 960px;
}

ul{
    list-style: none;
    
}

span{
    font-weight: 900;
    color:darkslateblue;
    margin-right: 5px;
}

h2{
    color: white;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

a{
    text-decoration: none;
    color:forestgreen;
}

a:hover{
    color:coral;
    text-decoration: underline;
}