* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 100%;
  font-weight: normal;
  line-height: 1.3;


}

@font-face {
  font-family: Times New Roman;
  src: url('Times New Roman.ttf');
}


body {
  animation: bg 6s infinite alternate;
  overflow: hidden;
}


h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 30px;
  text-align: center;
  word-break: keep-all;
  color: black;
  font-family: "Times New Roman", Times, serif;
}


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

a:visited {
  color: white;
}

a:active {
  color: white;
}

a:hover {
  color: #5A4AFF;
}



  @keyframes bg {
  0% {
      background-color: #48BAFF;
  }
  60% {
    background-color: #5A4AFF;
  }
  100%{
    background-color: #7988FF;
  }
  
 }