*{
    margin:0px;
    padding:0px;
}
nav{
    display:flex;
    justify-content:space-around;
    background-color: rgb(19, 20, 20);
    height: 85px;

}
.left ul{
    display:flex;
    list-style:none;

}
.left ul li{
    margin:24px 10px;
}
.left ul li a{
    text-decoration: none;
    color:white;
    list-style:none;

}
.right{
    display: flex;
}
.right img{
    height: 51px;
    width: 60px;
    padding: 10px;
    border-radius: 55px;

}
.right h1{
    padding: 19px 0px 14px;
    font-size: xx-large;
    font-family: sans-serif;
    color:white;
}
html, body {
    width: 100%;
    height:100%;
  }
  
  body {
      background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
      background-size: 400% 400%;
      animation: gradient 15s ease infinite;
  }
  
  @keyframes gradient {
      0% {
          background-position: 0% 50%;
      }
      50% {
          background-position: 100% 50%;
      }
      100% {
          background-position: 0% 50%;
      }
  }