/* Stinky Bean Association work */
body {
    background: lightblue;
    text-align: center;
    
}
p {
    font-family: fantasy;
}
h1 { 
    font-family: cursive;
}
.navagation {
    background: red;
}
.navagation:hover {
    background: orange;
    transition: 1s ease;
}
a {
    color: black;
}
.media {
    background: red;
}
.media:hover {
    background: orange;
    transition: 1s ease-in-out;
}