
/* ---- Wingman Font ---- */
@font-face {
  font-family: "WingmanFont";
  src: url('../fonts/wingman.ttf') format('opentype');
}

* {
  background-color: #232e62;
  font-family: "WingmanFont";
  color: white;
}

span {
  color: #e7bc00;
}

.accordion {
  background-color: #e7bc00;
  color: #232e62;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: center;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #232e62; 
  color: #fff;
}

.panel {
  display: none;
  background-color: white;
  overflow: hidden;
}

img {
  max-width: 95vw;
}