*{
    box-sizing: border-box;
}
body {
    background: #224941 url('./img/bg.jpg') no-repeat center center/cover;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
  }
  
  .container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    height: 300px;
    width: 300px;
    position: relative;
    transform: scale(1);
  }
  
  .circle {
    background-color: #010f1c;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}  

.gradient-circle{
    background: conic-gradient(
        #55b7a4 0%,
        #4ca493 40%,
        #fff 40%,
        #fff 60%,
        #336d62 60%,
        #2a5b52 100%
      );
    height: 320px;
    width:320px;
    position: absolute;
    border-radius: 50%;
    z-index:-2;
    top: -10px;
    left: -10px;
}

.pointer{
    background-color: #fff;
    height: 20px;
    width:20px;
    position: absolute;
    border-radius: 50%;
    display: block;
}

.pointer-container {
  position: absolute;
  top: -40px;
  left: 140px;
  width: 20px;
  height: 190px;
  animation: rotate 7.5s linear forwards infinite;
  transform-origin: bottom center;
}


@keyframes rotate{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

.container.grow{
    animation: grow 3s linear forwards infinite;
}
@keyframes grow{
    0%{
        transform: scale(1);
    }100%{
        transform: scale(1.2);
    }
}

.container.hold{
    transform: scale(1.2);
}
.container.shrink{
    animation: shrink 3s linear forwards infinite;
}
@keyframes shrink{
    0%{
        transform: scale(1.2);
    }100%{
        transform: scale(1);
    }
}

@media (max-width: 500px){
    body{
        size: 74%;
    }
}