* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: url('./img/bg.jpg') ;
    overflow: hidden;
}
h1 {
    margin-top: 20px;
    color: #fff;
}
main {
    position: relative;
    margin: auto;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(1);
    animation: scale 4s linear infinite alternate;
}
@keyframes scale {
    from{
        transform: scale(1)
    }
    to {
        transform: scale(1.2)
    }
}
.circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #010f1c;
    border-radius: 50%;
    z-index: -1;
}
.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 {
    from {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(360deg)
    }
}
.pointer {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
}
.gradient-circle {
    position: absolute;
    top: -10px;
    left: -10px;
    height: 320px;
    width: 320px;
    /* background: conic-gradient(
      #55b7a4 0%,
      #4ca493 40%,
      #fff 40%,
      #fff 60%,
      #336d62 60%,
      #2a5b52 100%
    ); */
    z-index: -2;
    border-radius: 50%;
  }
p {
      color: #fff;
  }