
.eyes {
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
	z-index:1;
}

.eye {
    width: 50px;
    height: 50px;
    background: #fff;
    display: inline-block;
    margin: 20px;
    border-radius: 50%;
    position: relative;

    animation: blink 3s infinite;
}

@-webkit-keyframes blink {
    0%, 100% {
        transform: scale(1, .05);
    }
    5%,
    95% {
        transform: scale(1, 1);
    }
}

.ball {
    width: 10px;
    height: 10px;
    background: #000;
    position: absolute; /* relative */
    top: 50%;
    left: 50%;
    transform: translate(50%, 50%);
    border-radius: 50%;
    border: 10px solid #6d6875;
}