@font-face {
  font-family: "Finger Paint";
  src: url("FingerPaint-Regular.ttf");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Finger Paint", sans-serif;
}
body {
  background: #221f24;
}
.app {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  margin: auto;
}

.header img {
  width: 100%;
}

h1 {
  font-size: 2.2rem;
  margin-top: 5px;
  background: -webkit-linear-gradient(#e02400, #fab301);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  color: white;
  text-align: center;
  margin-bottom: 5px;
}

.team {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.team img {
  width: 65px;
  height: 90px;
  object-fit: contain;
  margin: 0px 10px;
  border-radius: 10px;
  /* border: 3px solid #151515; */
}
.fire {
  background: linear-gradient(#da5e1b, #fabc01);
}

.captain__image img {
  width: 110px;
  margin-bottom: 5px;
  object-fit: cover;
  /* border: 5px solid #151515; */
  border-radius: 10px;
}

button {
  padding: 10px 10px;
  font-size: 1.1rem;
  background: none;
  border: 2px solid white;
  border-radius: 8px;
  cursor: pointer;
  color: white;
  margin-top: 15px;
}
