.tenmetu {
		position: absolute; top: 74%; left: 37%; color: white; font-size: 4vmin;
    animation: fadeIn 2s ease 0s 1 normal;
        -webkit-animation: fadeIn 2s ease 0s 1 normal;
    background: url(***.jpg) no-repeat;
    padding: 10px;
    border-radius: 4px;
    border: solid 1px #ccc;
}
 
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}