*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  font-family: myFirstFont;
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* I do this for all my projects */

}

body {
  height: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #c8c8c8;
}

@font-face {
   font-family: myFirstFont;
   src: url(/images/clock/SV-Regular.woff2);
}


/* #ticks {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.minute-tick {
  position: absolute;
  width: 4px;
  height: 10px;
  background: rgb(255, 0, 0);
  transform-origin: center bottom;
  border-radius: 1px;
} */


.clock-container {
  width: 80vmin;
  aspect-ratio: 1;
overflow: hidden;
}

.clock {
  position: relative;
  width: 100%;
  height: 100%;
  /* border: 1vmin solid white; */
  border-radius: 50%;
  background: #ffffff; 
  letter-spacing: -6px;
  align-content: center;

}

.hand {
  width: 50%;
  background: rgb(0, 0, 0);
  position: absolute;
  top: 50%;
  transform-origin: 100%;
  transform: rotate(90deg);
  transition: all 0.05s;
  transition-timing-function: cubic-bezier(0.1, 2.7, 0.58, 1);
  z-index: 100;
}
.hour-hand { 
  height: 4px; 
  background: rgb(255, 0, 0);
  width: 35%;
  margin: 15%;
  top: 35%;
  }
.minute-hand {
  height: 4px;
  background: rgb(0, 0, 255); 
  width: 42%;
  margin: 8%;
  top: 42%;
}
.second-hand {
height: 4px;
background: rgb(255, 255, 0); 
width: 43%;
margin: 7%;
top: 43%;
}

.number {
    margin-top: -6px;
    margin-left: 5px;
  position: absolute;
  color: rgb(10, 10, 10);
  text-align: center;
  font-size: 10vmin;
  transform: translate(-50%, -50%);
}


@-moz-document url-prefix(){
    .number {
        margin: 4px;
        margin-left: 2px;
    }
}

#numbers {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}


.bottom {
  position: absolute;
  bottom: 3vh;
  width: auto;
}

.font {
    font-family: 'Courier New', Courier, monospace;
    color: #d1d1d1;
}


.right-element {
  position: fixed;
  top: 15px;
  right: 16px;
}

.large {
  font-size: 1.8em;
  line-height: 1.2em;
  text-decoration: none;
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  opacity: 0.1;
}

a:hover {
  animation: blinker 0.3s linear infinite;
}

/* /////////////// note drop down */

.dropdown {
    display: inline-block;
    position: absolute;
    top: 15px;
    left: 16px;
}

.dropdown-content {
    display: none;
    position: fixed;
    background-color: #bbff00;
    margin-top: -10px;
    width: 400px;
    padding: 12px 16px;
    z-index: 2000;
}

.dropdown-content.active,
.dropdown:hover .dropdown-content {
    display: block;
}

.note {
    font-size: 2em;
    color: rgb(223, 223, 223);
    font-family: 'Courier New', Courier, monospace;
}

.dropdown-content p {
    font-family: Arial, Helvetica, sans-serif;
}

#saturn {
    src: url(/images/clock/SV-Regular.woff2);
}


@keyframes blinker {
  50% {
      filter: invert(100%);
  }
}

@media screen and (max-width: 600px) {

    .hour-hand { 
      height: 3px; background: rgb(255, 0, 0);

    }
    .minute-hand { 
      height: 3px; background: rgb(0, 0, 255); 

    }
    .second-hand { 
      height: 3px; background: rgb(255, 255, 0); 
    }

    .number {
        margin-left: 2px;
        margin-top: -3px;
    }
  
    .clock {
        letter-spacing: -2px;
    }
    body {
        overflow: hidden;
    }

    /* /////////////// note drop down */

    .dropdown-content {
        width: 300px;
    }

}