html {
    background-color: #181818;
    color:white;
}

@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200&display=swap');
h1{
    font-family: 'Inconsolata', monospace;
}


.text {
  font-family: 'Inconsolata', monospace;
  animation:comein 1s ease-in-out;
}

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



.discord {
  width :50px;

}


/* 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;
  }
  
  /* Add a color to the active/current link */
  .topnav a.active {
    background-color: #482377;
    color: white;
  }