/*
==============================================================================
CONFIDENTIAL – NON-DISCLOSURE NOTICE
------------------------------------------------------------------------------
This file contains proprietary and confidential information belonging to
The University of Sydney. It is provided under the terms of a Non-Disclosure
Agreement (NDA) and/or Licence Agreement. Any unauthorized copying, sharing, 
or distribution of this code or any part thereof is strictly prohibited.

For the full details of your confidentiality obligations, please refer to
the NDA and/or Licence Agreement under which you have received this code.

© 2023-2025 The University of Sydney. All rights reserved.
==============================================================================
*/


/* 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 {
    width:200px;
    height:200px;
    animation: pulse 10s ease-in-out infinite;
}

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