@keyframes latidos {
    from { transform: none; }
    50% { transform: scale(0.95); }
    to { transform: none; }
}

.content {
    text-align: center;
    color: white;
    font-family: 'Rubik', sans-serif;
    animation: latidos .9s infinite;
	transform-origin: center;
}
.items {
    display: flex;
    align-items: center;
    height: 95vh;
    justify-content: center;
}

body{
    background-color: #e2e2e2;
}



