/*Emerson Mazzoni: my css file for Lab 5*/

body {
    background-color: bisque;
    margin-left: 40px;
    margin-right: 40px;
}

#links {
    color: brown
}

#secondpage {
    color: darkturquoise
}

#blue {
    color: blue
}

#royal {
    color: royalblue
}

.boxLink {
    background-color: aquamarine
    color: white;
    padding: 10px;
    box-shadow: 10px 10px 8px silver;
    text-shadow: 2px 2px silver;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-family: Georgia, serif;
}
 .boxLink:hover {
       background-color: crimson
       color: mintcream;
    }