@keyframes moon {
    0% {
        transform: translateY(0) rotate(-1deg);
    }
    100% {
        transform: translateY(30px) rotate(1deg);
    }
}

@keyframes stamps-row {
    0% {left: 0;}
    100% {left: -100%;}
}


div.about div.info-card {
    display: flex;
    flex-direction: row;
}

div.about div.info-card > div.profile-pic {
    text-align: center;
}

div.about div.info-card > div.profile-pic img {
    border-radius: 3px;
}

div.about div.info-card ul {
    list-style-type: none;
}

div.about div.info-card ul li {
    padding: 5px 0 5px 0;
}



div.content-full {
    margin-top: 32px;
}

div.present {
    text-align: center;
}

div.present > img {
    animation: moon 1s ease-in-out alternate infinite;
}


div#blinkers img {
    width: 100%;
}