* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    background-color: #240F52; 
    background-image: linear-gradient(0deg, #36295e, #1c1045);
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    padding-top: 50px;
    font-size: 3rem;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    width: 300px;
    margin: auto;
    position: relative;
    transform: scale(1);
}

.outer-circle {
    position: relative;
    background-image: linear-gradient(135deg, #FEED07 0%, #FE6A50 5%, #ED00AA 15%, #2FE3FE 50%, #8900FF 100%);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    text-align: center;
    align-items: center;
      /*  Rotate  */
    animation-duration: 7.5s;
    animation-name: rotate;
    animation-iteration-count: infinite;    
}

.inner-circle {
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    position: relative;
    background-color: #240F52;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    text-align: center;
    
}

@keyframes rotate {
    0% {transform:rotate(20deg);}
    10% {transform:rotate(30deg);}
    30% {transform:rotate(360deg);}
    40% {transform:rotate(370deg);}
    60% {transform:rotate(390deg);}
    100% {transform:rotate(20deg);}
}

.grow {
   transform : scale(1.5);
   transition-duration: 5s;
}

.shrink {
    transform : scale(1);
    transition-duration: 5s;
 }

 #text{
    position: absolute;
    margin-top: 50%;
    margin-bottom: 50%;
    font-size: 2rem;

 }

