body {
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: Arial, sans-serif;
  background: url('./assets/airport.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

.boardflightbtn {
  cursor: none;
  border-radius: 10px;
  border: none;
  background-color: #365DE2;
  color: white;
  padding: 10px;
  transition: 0.2s;
  font-size: 36px;
}

.boardflightbtn:hover {
  cursor: none;
  background-color: #2954E3;
  transform: scale(1.1);
}