.photo
{
    float: right;
    border: 1rem solid #394659;
    border-radius: .4rem;
    width: 35rem;
    margin: 0px 0px 2rem 2rem;
}

.photo:hover
{
    animation: wiggle 0.2s linear;
}

.photo:nth-of-type(even)
{
    float: left;
    margin: 0px 2rem 2rem 0px;
}

#banner
{
    display: block;
    box-sizing: border-box;
    width: 100%;
    background-color: #4a7faf;
    color: white;
    text-decoration: none;
    font-family: 'Source Code';
    text-align: center;
    height: 10rem;
    line-height: 3.5rem;
    font-size: 3rem;
    padding-top: 1.4rem;
    text-shadow: 0px 1px 5px #394659, 0px 1px 5px #394659, 0px 2px 5px #394659, 0px 2px 5px #394659, 0px 3px 5px #394659;
    border-radius: 5px;
    transition: .2s;
}

#banner:hover
{
    text-shadow: 0px 1px 5px black, 0px 2px 5px black, 0px 3px 5px black;
    transform: scale(1.05) translateY(-.1rem);
}