 .analog,
  .hour,
  .min,
  .sec {
    display: flex;
    justify-content: center;
    border-radius: 50%;
  }
  
  .analog {
    width: 150px;
    height: 150px;
    max-width: 150px;
    min-height: 150px;
    align-self: center;
    align-items: center;
    background-color: var(--text-muted);
    background-image: var(--clock);
    background-position: center center;
    background-size: cover;
    border: 4px solid var(--main-bg-color);
    box-shadow: 0-15px 15px rgba(255, 255, 255, 0.05),
      0 15px 15px rgba(0, 0, 0, 0.3);
    transition: all ease 0.2s;
    margin-bottom: 10px;
    position: relative;
  }
  
  .analog:before,
  .hour:before {
    content: "";
    position: absolute;
    background-color: var(--main-text-color);
  }
  
  .analog:before {
    height: 0.75rem;
    width: 0.75rem;
    border: 2px solid var(--main-bg-color);
    border-radius: 50%;
    z-index: 1000;
    transition: all ease 0.2s;
  }
  
  .hour,
  .min,
  .sec {
    position: absolute;
  }
  
  .hour {
    height: 70px;
    width: 70px;
  }
  
  .hour:before {
    height: 50%;
    width: 3px;
    border-radius: 6px;
    background-color: var(--bg-photo-skeleton-2);
  }
  
  .min {
    height: 85px;
    width: 85px;
  }
  
  .min:before,
  .sec:before {
    content: "";
    height: 50%;
    width: 2px;
  }
  
  .min:before {
    background-color: var(--main-text-color);
    border-radius: 4px;
    background-color: var(--bg-photo-skeleton-1);
  }
  
  .sec {
    height: 100px;
    width: 100px;
  }
  
  .sec:before {
    background-color: red;
    border-radius: 2px;
  }
  
  .switch-cont {
    margin: 2em auto;
    bottom: 0;
  }
  
  .switch-cont .switch-btn {
    font-family: monospace;
    text-transform: uppercase;
    outline: 0;
    padding: 0.5rem 1rem;
    background-color: var(--main-bg-color);
    color: var(--main-text-color);
    border: 1px solid var(--main-text-color);
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all ease 0.3s;
  }
  
  .text-clock {
    text-align: center;
  }