/*  _________  __  __ _____  _____   ______ __  __ _____  ______ __ __ __ __  __ __     ______
    \_  ___  // / / // __  // ____\ \ __  // / / // __  // __  // // // // / / // /    / ____/
     / /__/ // /_/ // / / // /__   / /_/ // /_/ // / / // /_/ // // // // / / // /    / /__
    / _____// __  // / / / \___ \ / ____// __  // / / // _  _// // // // / / // /    / ___/
   / /     / / / // /_/ /_____/ // /    / / / // /_/ // / \ \ \ V  V // /_/ // /___ / /
  /_/     /_/ /_//_____//______//_/    /_/ /_//_____//_/   \_\ \__/\_/\____//_____//_/*/
@font-face {
  src: url('https://www.phosphorwulf.com/public_html/fonts') format('truetype');
  font-family: ds-digital;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-align: center;
  color: white;
}

html,body{
  display: grid;
  width: 100vw;
  place-items: center;
  background: #000;
}
.center{
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    min-height: 30vh;
}
.ring{
  position: absolute;
  height: 200px;
  width: 200px;
  border-radius: 50%;
  animation: ring 2s linear infinite;
}
@keyframes ring {
  0%{
    transform: rotate(0deg);
    box-shadow: 1px 3px 2px #14ffe9;
  }
  50%{
    transform: rotate(180deg);
    box-shadow: 1px 3px 2px #ffeb3b;
  }
  100%{
    transform: rotate(360deg);
    box-shadow: 1px 3px 2px #ff00e0;
  }
}
.ring:before{
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}
img#avatar{
  position: absolute;
  height: 200px;
  width: 200px;
  display: inline-block;
  border-radius: 50%;
}

ul{
  display: flex;
  justify-content: center;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
}
ul li{
  position: relative;
  display: block;
  color: #000;
  font-size: 30px;
  height: 60px;
  width: 60px;
  background: #171515;
  line-height: 60px;
  border-radius: 50%;
  margin: 0 15px;
  cursor: pointer;
  transition: .5s ease-out;
}
ul li:before{
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  background: #FF0000;
  height: inherit;
  width: inherit;
  border-radius: 50%;
  z-index: -1;
  transform: scale(0.9);
  transition: .5s ease-out;
}
ul li:hover:before{
  filter:blur(3px);
  transform: scale(1.2);
  box-shadow: 0 0 15px #FF0000;
}
ul li:nth-child(1):hover:before{
  background: #00ff55;
  box-shadow: 0 0 15px #00ff55;
}
ul li:nth-child(1):hover{
  color: #00ff55;
  box-shadow: 0 0 15px #00ff55;
  text-shadow: 0 0 15px #00ff55;
}
ul li:nth-child(2):hover:before{
  background: #0040ff;
  box-shadow: 0 0 15px #0040ff;
}
ul li:nth-child(2):hover{
  color: #0040ff;
  box-shadow: 0 0 15px #0040ff;
  text-shadow: 0 0 15px #0040ff;
}
ul li:nth-child(3):hover:before{
  background: #ffff00;
  box-shadow: 0 0 15px #ffff00;
}
ul li:nth-child(3):hover{
  color: #ffff00;
  box-shadow: 0 0 15px #ffff00;
  text-shadow: 0 0 15px #ffff00;
}
ul li:hover{
  box-shadow: 0 0 15px #FF0000;
  text-shadow: 0 0 15px #FF0000;
}

html, footer{
  display: grid;
  height: 20%;
  place-items: center;
  background: #000;
}

.wrapper{
  height: 60px;
  width: 265px;
  position: relative;
  background: linear-gradient(135deg, #14ffe9, #ffeb3b, #ff00e0);
  border-radius: 10px;
  cursor: default;
  animation: animate 1.5s linear infinite;
}

.wrapper .display,
.wrapper span{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wrapper .display{
  z-index: 999;
  height: 45px;
  width: 250px;
  background: #1b1b1b;
  border-radius: 6px;
  text-align: center;
}

.display #time{
  font-family: 'ds-digital', sans-serif;
  line-height: 45px;
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #14ffe9, #ffeb3b, #ff00e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: animate 1.5s linear infinite;
}

@keyframes animate {
  100%{
    filter: hue-rotate(360deg);
  }
}

.wrapper span{
  height: 100%;
  width: 100%;
  border-radius: 10px;
  background: inherit;
}

.wrapper span:first-child{
  filter: blur(5px);
}

.wrapper span:last-child{
  filter: blur(13px);
}
