@font-face {
  font-family: TextFont; /* set name */
  src: url("font.ttf"); /* url of the font */
}



body {
  background-color: white;
  color: black;
  font-family: TextFont;
  font-size : xx-large;
  margin-left: 40px;  
  margin-right: 40px;
}

button {
  font-family: TextFont;
  text-align: center;
  font-size: 16px;
  border: none;
  color: black;
  background-color: white;
  font-weight: bold;
  width: 15%;
}

button:hover {
    color: white;
    background-color: black;
    cursor: pointer;
  }

a:link {
  color: blue;
  background-color: transparent;
  text-decoration: underline;
}

a:visited {
  color: blue;
  background-color: transparent;
  text-decoration: underline;
}

a:hover {
  color: grey;
  background-color: transparent;
  text-decoration: underline;
}

.navbar {
  width: 80%; 
  text-align: center;
  border: solid;
  border-width: 1px;
  padding: 5px;
  margin-left: auto;  
  margin-right: auto;
  margin-top: 10px;
  display: flex;
  justify-content: center; 
}

.banner {
  font-size: 98px;
  text-align: center;
  
}
  