@charset "UTF-8";

html {
  width: 100%;
}

@font-face{
  font-family: 'Steradian';
  font-style: medium;
  src: url('font/Steradian Medium.otf');
}

body {
  background-color: white;
}


.glow:hover{
  color:blue;
}

.glow {
  position: fixed;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Steradian';
  font-size: 200em;
  color: white;




  -webkit-animation: glow 1s ease-in-out infinite alternate;
  -moz-animation: glow 1s ease-in-out infinite alternate;
  animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 0px white;
  }
  
  to {
    text-shadow: 0 0 100px blue;
  }
}


a{
  text-decoration: none;
  color: none;
}

