body {
  margin: 0;
  height: 100%;
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('../FotosSite/Background2.jpg') no-repeat center center fixed;
  background-size: cover;
}


#cabecalho {
  background-color: #ff9825;
  height: 20%;
  font-family: "Koulen", sans-serif;
  font-size: 500%;
  color: #FFFFFF;
  display: flex;
  align-content: center;
  justify-content: center;
  width: 100%;
}

#link {
  text-decoration: none;
  color: #1A8300;
}

#contempesquisa {
  height: 50px;
  display: flex;
  margin-top: 40px;
  justify-content: center;
  width: 100%;
  margin-bottom: 35px;

}

#pesquisa {
  border-radius: 30px;
  padding-left: 3%;
  font-family: "Koulen", sans-serif;
  width: 50%;
  font-size: 24px;

}

.titulotime {
  font-family: "Jersey 25", sans-serif;
  font-size: 50px;

  color: #FFFFFF;

  display: flex;
  background-color: #ff9825;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  padding-bottom: 20px;
}

#vitrineimagens {
  display: flex;
  margin-left: 1.3%;
  margin-right: 1.3%;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: space-around;
}

#camisa {
  width: 30px;
  fill: #1A8300;
  margin-left: 5px;
}

.cardcamisa {
  height: 350px;
  width: 280px;

  border-radius: 15px;
  border-width: 2px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  text-overflow: ellipsis;
  justify-content: center;
  align-content: center;
  overflow: hidden;
  background-color: #ffffff;

}

a {
  text-decoration: none;
  color: black;
}

.Thumbnail {
  width: 290px;
  height: 280px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;


}

.titulodacamisa {
  width: 230px;
  height: 70px;
  font-family: "Jersey 25", sans-serif;
  font-size: 22px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 10px;
}

.highlight {
  background-color: yellow;
  font-weight: bold;
}

#brasileirao {
  font-size: 62px;
  color: white;
  font-family: "Jersey 25", sans-serif;

  margin-left: 20px;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  margin-top: 20px;

}

#selecao {
  font-size: 62px;
  color: white;
  font-family: "Jersey 25", sans-serif;

  margin-left: 20px;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  margin-top: 20px;

}

#internacional {
  font-size: 62px;
  color: white;
  font-family: "Jersey 25", sans-serif;
  margin-left: 20px;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  margin-top: 20px;

}

.logo-img {
  display: block;
  max-width: 90%;
  /* limits image width */
  height: auto;
  /* keeps aspect ratio */
  margin: 0 auto;
  /* centers horizontally */
  padding: 1rem 0;
  /* optional spacing */
}


#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 20px 30px;
  font-size: 40px;
  background-color: #ff9825;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

#scrollTopBtn.show {
  opacity: 1;
  pointer-events: auto;
}

#scrollTopBtn:hover {
  background-color: #FFFFFF;
}