/* main area */
.index-content {
    width: 100%;
    height: 100%;
    /*transition: width 0.3s ease-in-out;*/
    padding: 20px;
    position: relative;
    align-items: center;
    justify-content: space-evenly;
    display: flex;
    flex-direction: column;
}

.cogniti-pulse {
    animation: pulse 10s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
