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

html{
    font-size: 62.5%; /* 1rem = 10px */
}

body{
    font-family: "Lato", sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #9ca3af;
    background-color: #0b0f17;
    background-image: radial-gradient(at 50% 50%, rgba(245, 158, 11, 0.08) 0px, transparent 100%);
    min-height: 100vh;
}

.main-title{
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 8rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.main-title h1{
    font-size: 7rem;
    text-transform: uppercase;
    font-weight: 800;
    color: #f3f4f6;
    letter-spacing: 2px;
}

.main-title h2{
    font-size: 4rem;
    font-weight: 300;
    text-transform: uppercase;
    color: #f59e0b;
    letter-spacing: 1px;
}

.svg-img{
   display: block;
   margin: auto;
}

svg{
    display: block;
   margin: auto;
}

#clockHour{
    animation: clockHandSlow 96s infinite linear;
    transform-origin: 0px 0px;
}

#clock2{
    animation: clockHand2 12s infinite linear;
    transform-origin: 0px 0px;
}

#clockSecond{
    animation: clockHandSecond 4s infinite linear;
    transform-origin: 0px 0px;
}

.clock-glow {
    animation: clockGlowPulse 2.5s infinite ease-in-out alternate;
    transform-origin: 0px 0px;
}

@keyframes clockHandSlow{
    from{
        transform: rotateZ(0deg);
    }
    to{
        transform: rotateZ(360deg);
    }
}

@keyframes clockHandSecond{
    from{
        transform: rotateZ(0deg);
    }
    to{
        transform: rotateZ(360deg);
    }
}

@keyframes clockGlowPulse{
    0%{
        opacity: 0.2;
    }
    100%{
        opacity: 0.7;
    }
}

.bubble-shake {
    animation: curseShake 1.4s ease-in-out infinite alternate;
    transform-box: fill-box;
    transform-origin: bottom left;
}

@keyframes curseShake {
    0% { transform: rotate(-3deg) translateY(0px); }
    100% { transform: rotate(3deg) translateY(-4px); }
}

.led-blink {
    animation: ledPulse 1.8s infinite ease-in-out alternate;
}

@keyframes ledPulse {
    0% { opacity: 0.35; filter: drop-shadow(0 0 1px currentColor); }
    100% { opacity: 1; filter: drop-shadow(0 0 3px currentColor); }
}

#man{
    animation: manBody 1s ease-in-out infinite alternate;
    transform-box: fill-box;
    transform-origin: bottom;
}

#pc-circle{
    fill: #6ace66;
    stroke-width: 4;
    animation: change-light 4s linear infinite alternate;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 35px;
    line-height: 35px;
    background-color: #030712;
    color: #6b7280;
    font-size: 1.3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@keyframes clockHand{
    from{
        transform: rotateZ(0deg);
    }
    to{
        transform: rotateZ(-360deg);
    }
}

@keyframes clockHand2{
    from{
        transform: rotateZ(0deg);
    }
    to{
        transform: rotateZ(360deg);
    }
}

@keyframes manBody{
    from{
        transform: rotateX(0deg);
    }
    to{
        transform: rotateX(10deg);
    }
}

@keyframes tree{
    from{
        transform: rotateZ(10deg);
    }
    to{
        transform: rotateZ(-20deg);
    }
}

@keyframes change-light {
    0% {
        stroke: #cd61f8;
      }
      25% {
        stroke: #6ace66;
      }
      75% {
        stroke: #2995c0;
      }
      100% {
        stroke: #e92949;
      }
  }

  /* Media Queries */

  @media (min-width: 640px){
    .main-title h1{
        font-size: 5rem;
        text-transform: uppercase;
        font-weight: 700;
        color: #555;
    }
    
    .main-title h2{
        font-size: 3rem;
        font-weight: 300;
        text-transform: uppercase;
    }
    
     
    }
     
    @media (min-width: 768px){
        .main-title h1{
            font-size: 6rem;
            text-transform: uppercase;
            font-weight: 800;
            color: #555;
        }
        
        .main-title h2{
            font-size: 4rem;
            font-weight: 300;
            text-transform: uppercase;
        }
    
     
    }
     
    @media (min-width: 1024px){
     
        .main-title h1{
            font-size: 7rem;
            text-transform: uppercase;
            font-weight: 900;
            color: #555;
        }
        
        .main-title h2{
            font-size: 5rem;
            font-weight: 300;
            text-transform: uppercase;
        }
     
    }
     
    @media (min-width: 1200px){
     
        .main-title h1{
            font-size: 8rem;
            text-transform: uppercase;
            font-weight: 900;
            color: #555;
        }
        
        .main-title h2{
            font-size: 5rem;
            font-weight: 300;
            text-transform: uppercase;
        }

        .main-title{
            text-align: center;
            margin-top: 4rem;
            margin-bottom: 4rem;
        }
        
     
    }