.logo {
    width: 150px;
}

.mood {
    -webkit-box-reflect: below 0px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(30%, transparent), to(rgba(250, 250, 250, 0.5)));
    /* border-radius: 25px; */
}

#tram {
    width: 25%;
    display: block;
    animation: alternate ease-in-out;
    animation-iteration-count: 10;
    animation-name: tram;
    animation-duration: 5s;
    animation-delay: 2s;
}

@-webkit-keyframes tram {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(300%);
    }
}
