h1{
    color: rgb(255, 0, 0);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    letter-spacing: 2px;
    text-shadow: 2px 2px white;
    font-size: 50px;

}

img{
    width: 500px;
}

/* transitions.css */
a:link {
    transition: color 0.5s;
}

img{
    opacity: 0.25;
    transition: opacity 500ms ;
    transition: 2s;

}

img:hover {
    opacity: 1;
}


/* THIS CENTERS IT */
body{
    margin:auto;
    width: 50%;
    text-align: center
}