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

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

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



body {
  background-color: white;
  color: black;
  font-family: TextFont;
}

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: black;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: black;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

.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;
  
}
  