html {
    background-color: #181818;
    
}
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200&display=swap');


@keyframes h1 {

}



.tm {
  font-family: 'Inconsolata', monospace;
  color:#482377;
  display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 90vh;
    font-size:large;
    animation: comein 1s ease-in-out;
}


@keyframes comein {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
}


/* Add a black background color to the top navigation */
.topnav {
    background-color: #282828;
    overflow: hidden;
  }
  
  /* Style the links inside the navigation bar */
  .topnav a {
    float: right;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    font-family: 'Inconsolata', monospace;
  }
  
  /* Change the color of links on hover */
  .topnav a:hover {
    background-color: #482377;
    color: white;
  }
  

  .footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #282828;
    color: white;
    text-align: center;
  }