
*{
    margin-top: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-size: 32.5%; /* 1rem = 10px */
}

body{
    font-family: "Lato", sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #000;
    background-color: #000;
}


.square {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(#303030, #757575);
  z-index: 2;
}

.circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: #1cd99d;
  border-radius: 50%;
}

.triangle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: #f5f5f5;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}



ul{
  list-style: square;
}

.main-title{
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 8rem;
    /* text-shadow: 
    1px 0px 1px #ccc, 0px 1px 1px #eee, 
    2px 1px 1px #ccc, 1px 2px 1px #eee,
    3px 2px 1px #ccc, 2px 3px 1px #eee,
    4px 3px 1px #ccc, 3px 4px 1px #eee,
    5px 4px 1px #ccc, 4px 5px 1px #eee,
    6px 5px 1px #ccc, 5px 6px 1px #eee,
    7px 6px 1px #ccc; */
}

.main-title h1{
    font-size: 4rem;
    text-transform: uppercase;
    font-weight: 600;
    color: #53FF80;
}

.main-title h2{
    font-size: 2.2rem;
    font-weight: 250;
    text-transform: uppercase;
}

.svg-img{
   display: block;
   margin: auto;
}

svg{
    display: block;
   margin: auto;
}

#clock{
    animation: clockHand 5s infinite linear;
    
    
    transform-box: fill-box;
    transform-origin: bottom;
}

#leftTree, #righTree{
    animation: tree 2s ease-in-out infinite alternate;
    transform-box: fill-box;
    transform-origin: bottom;
}

#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;
}


p {
    font-family: "Monserrat", sans-serif;
    color: whitesmoke;
    font-size: 20px;
    text-align: center;
}

.divider {
    height: 5px;
    background: linear-gradient(to right, #53FF80, #dcdcdc, #53FF80);
}

table {
  table-layout: fixed;
  width: 80%;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  border-collapse: collapse;
  font-size: 2.6rem;
}

th {
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1.7;
  background-color: #00DD85;
  color: #fff;
  text-align: center;
  border-right: 1px solid #fff;
}

td {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  text-align: justify;
  color: #fff;
  padding-top: 10px;
  padding-left: 15px;
  padding-right: 35px;
  padding-bottom: 10px;
  background-color: #000;
  vertical-align: text-top;
}


.footer {
    position: relative;
    bottom: 0;
    width: 100%;
    height: 35px;
    line-height: 35px;
    background-color: #f5f5f5;
    font-size: 2.6rem;
}

@keyframes clockHand{
    from{
        transform: rotateZ(0deg);
    }
    from{
        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: 0px){
    .main-title h1{
        font-size: 4.7rem;
        text-transform: uppercase;
        font-weight: 700;
        color: #53FF80;
    }
    
    .main-title h2{
        font-size: 2.5rem;
        font-weight: 300;
        text-transform: uppercase;
        color: #53FF80;
    }
    
    p {
            font-family: "Monserrat", sans-serif;
            color: whitesmoke;
            font-size: 12px;
            text-align: center;
        }
     
    }

  @media (min-width: 640px){
    .main-title h1{
        font-size: 4.7rem;
        text-transform: uppercase;
        font-weight: 700;
        color: #53FF80;
    }
    
    .main-title h2{
        font-size: 2.5rem;
        font-weight: 300;
        text-transform: uppercase;
        color: #53FF80;
    }
    
    p {
            font-family: "Monserrat", sans-serif;
            color: whitesmoke;
            font-size: 15px;
            text-align: center;
        }
     
    }
     
    @media (min-width: 768px){
        .main-title h1{
            font-size: 5.5rem;
            text-transform: uppercase;
            font-weight: 800;
            color: #53FF80;
        }
        
        .main-title h2{
            font-size: 2.8rem;
            font-weight: 300;
            text-transform: uppercase;
            color: #53FF80;
        }

        .fl-table {
            display: block;
            width: 100%;\
        }

        p {
            font-family: "Monserrat", sans-serif;
            color: whitesmoke;
            font-size: 15px;
            text-align: center;
        }
     
    }
     
    @media (min-width: 1024px){
     
        .main-title h1{
            font-size: 6rem;
            text-transform: uppercase;
            font-weight: 900;
            color: #53FF80;
        }
        
        .main-title h2{
            font-size: 3rem;
            font-weight: 300;
            text-transform: uppercase;
            color: #53FF80;
        }

        p {
            font-family: "Monserrat", sans-serif;
            color: whitesmoke;
            font-size: 20px;
            text-align: center;
        }
     
    }
     
    @media (min-width: 1200px){
     
        .main-title h1{
            font-size: 6.5rem;
            text-transform: uppercase;
            font-weight: 900;
            color: #53FF80;
        }
        
        .main-title h2{
            font-size: 3.5rem;
            font-weight: 300;
            text-transform: uppercase;
            color: #53FF80;
        }

        .main-title{
            text-align: center;
            margin-top: 4rem;
            margin-bottom: 4rem;
        }

        p {
            font-family: "Monserrat", sans-serif;
            color: whitesmoke;
            font-size: 20px;
            text-align: center;
        }
        
    }
