*{
    font-family: 'Poppins', sans-serif !important;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
    user-select: none;
    
}

body, html {
    /* The image used */
    background-image: url("Background.jpg");
  
    /* Full height */
    min-height: 100%;
  
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }


h1{
    color: #FFF;
    background: rgb(2,0,36);
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(11,11,163,1) 35%, rgba(0,212,255,1) 100%);
}

/*navbar*/
/* Add a black background color to the top navigation */
.simple-nav {
    background-color: #333;
    overflow: hidden;
  }
  
  /* Style the links inside the navigation bar */
  .simple-nav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  
  /* Change the color of links on hover */
  .simple-nav a:hover {
    background-color: #ddd;
    color: black;
  }
  
  /* Add a color to the active/current link */
  .simple-nav a.active {
    background-color: #04218c;
    color: white;
  }