* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-size: 16px;
}

body {
  background-color: #222222;
  background: repeating-linear-gradient(45deg, #2b2b2b 0%, #2b2b2b 10%, #222222 0%, #222222 50%) 0/15px 15px;
  font-family: 'Monoton', cursive;
  font-size: 1.5rem;
  text-align: center;
}

body h1 {
  background: rgba(255, 17, 119, 0.6);
  padding: 10px;
  font-size: 1.5rem;
  color: white;
}

body h4 {
  color: rgba(255, 17, 119, 0.4);
  font-family: Iceland;
  padding: 10px;
}

body .watchface {
  text-transform: uppercase;
  padding: 20px auto;
  display: grid;
  grid-template-columns: repeat(13, auto);
  grid-template-rows: repeat(8, auto);
  align-items: center;
  justify-items: center;
  align-content: center;
  justify-content: center;
}

body .watchface span {
  padding: 5px;
}

body .watchface .glow {
  color: #fff;
  font-family: 'Monoton', cursive;
  font-size: 1.75rem;
  animation: neon1 1.5s ease-in-out infinite alternate;
}

body .watchface .glow:hover {
  color: #FF1177;
  animation: none;
}

body .maintime, body .date {
  color: #FF1177;
  animation: none;
}

body .maintime:hover, body .date:hover {
  color: #fff;
  font-family: 'Monoton', cursive;
  font-size: 1.75rem;
  animation: neon1 1.5s ease-in-out infinite alternate;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact ul {
  list-style: none;
  position: relative;
  display: inline-block;
}

.contact ul .developer {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background: #ff1177;
  line-height: 50px;
  border-radius: 50px;
  color: #fff;
  font-family: 'Monoton', cursive;
  font-size: 1.75rem;
  animation: neon1 1.5s ease-in-out infinite alternate;
  font-size: 17px;
  pointer-events: none;
}

.contact ul li {
  display: inline-block;
  height: 50px;
  width: 50px;
  background: #ff1177;
  line-height: 55px;
  margin: 0 -11px;
  cursor: pointer;
  border-radius: 0;
  transition: background-color .5s ease-out, border-radius .5s .25s ease-out, margin .5s .25s ease-out;
}

.contact ul li:hover {
  background: rgba(255, 17, 119, 0.3);
}

.contact ul li i {
  color: white;
  font-size: 22px;
  opacity: 0;
  transition: opacity 1.7s;
}

.contact ul li:first-child {
  border-bottom-left-radius: 25px;
  border-top-left-radius: 25px;
}

.contact ul li:last-child {
  border-bottom-right-radius: 25px;
  border-top-right-radius: 25px;
}

.contact ul:hover .developer {
  opacity: 0;
  transition: opacity 0.5 .125 ease-out;
}

.contact ul:hover i {
  opacity: 1;
}

.contact ul:hover li {
  border-radius: 50px;
  margin: 0 10px;
}

@keyframes neon1 {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #FF1177, 0 0 70px #FF1177, 0 0 80px #FF1177, 0 0 100px #FF1177, 0 0 150px #FF1177;
  }
  to {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #FF1177, 0 0 35px #FF1177, 0 0 40px #FF1177, 0 0 50px #FF1177, 0 0 75px #FF1177;
  }
}
/*# sourceMappingURL=style.css.map */