*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p{
  font-size: 20px;
  font-family: 'Courier Prime', monospace;
  /* font-family: 'Sansita Swashed', cursive; */
}

/****************************************/
/************** NavBar ******************/
/****************************************/
.header-container{
  width: 100%;
  position: fixed;
  background-color: white;
}

.nav-bar{
  height: 60px;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid lightgray;
}

.header-container img {
  width: 50px;
}

.right-navbar, .left-navbar{
  width: 300px;
  margin: 30px;
}

.right-navbar > ul{
  display: flex;
  justify-content: space-between;
}
.right-navbar li{
  list-style: none; 
  padding: 15px;
  font-size: 1.2rem;
  font-weight: 900;
}

#home-link{
  color: rgb(189, 189, 38);
}

#players-link{
  color: navy;
}

#pictures-link{
  color: red;
}

.right-navbar li:hover{
  font-size: 22px;
}

.banner{
  width: 80%;
  text-align: center;
  padding-left: 
}

/***************************************************
  Letter animation
  from: https://tobiasahlin.com/moving-letters/#4
*****************************************************/
.ml1 {
  font-weight: 900;
  font-size: 2.5em;
}

.ml1 .letter {
  display: inline-block;
  line-height: 1em;
}

.ml1 .text-wrapper {
  position: relative;
  display: inline-block;
  padding-top: 0.1em;
  padding-right: 0.05em;
  padding-bottom: 0.15em;
}

.ml1 .line {
  opacity: 0;
  position: absolute;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: \red;
  transform-origin: 0 0;
}

.ml1 .line1 { top: 0; }
.ml1 .line2 { bottom: 0; }


/****************************************/
/************* Intro Image **************/
/****************************************/

.intro{
  padding-top: 60px;
  width: 100%;
  height: 100vh;
}

.intro img{
  width: 100%;
}


/****************************************/
/************** Us **********************/
/****************************************/
.us{
  background-color: rgb(250, 250, 164);
  height: 500px;
  width: 100%;
  margin-top: 8px;
  border-top: 1px solid black;
  text-align: center;
  vertical-align: center;
  }

.us-title-container{
  display: flex;
  flex-direction: center;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.us-title-container p{
  height: 250px;
  background-color: white;
  box-shadow: 0px 0px 20px 8px rgba(0,0,0,0.39);
  justify-content: center;
  vertical-align: middle;
  padding-top: 20px;
  border-radius: 10px;
}

.us-title-container img{
  width: 300px;
  padding: 0 30px;
}

#flag{
  width: 400px;
  height: 250px;
}

/****************************************/
/************** New Logo ****************/
/****************************************/

.new-logo{
  width: 100%;
  height: 550px;
  background-color: rgb(51, 170, 210);
  padding-top: 5px;
  border-top: 1px solid black;
}

.new-logo > h2{
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  font-size: 50px;
  width: 400px;
  height: 100px;
  margin: auto;
  margin-top: 50px;
  color: red;
  background: white;
  border-radius: 100px 100px 0 0;
}

.new-logo-container{
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  height: 30%;
  padding: 150px 30px;
  background-color: white;
}

.new-logo-left{
  width: 40%;
}

.new-logo-right{
  width: 50%;
  font-size: 20px;;
}

.new-logo-left > img{
  width: 500px;
  border: 1px solid lightgray;
  border-radius: 50%;
  box-shadow: 0px 0px 24px 8px rgba(0,0,0,0.39);

}



/****************************************/
/************** History ******************/
/****************************************/

.history{
  width: 100%;
  height: 500px;
  background-color: rgb(254, 141, 141);
  border-top: 1px solid black;
}

.history-title-container{
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-top: 30px;
}

.left-history-container, .right-history-container{
  padding: 20px 10px;

}

.right-history-container{
  background-color: white;
  width: 40%;
  border-radius: 10px;
  box-shadow: 0px 0px 20px 8px rgba(0,0,0,0.39);
}

video{
  width: 40em;
}

/****************************************/
/************** Footer ******************/
/****************************************/

footer{
  background-color: white;
  height: 60px;
  color: black;
  padding-top: 15px;
  text-align: center;
}

footer h3{
  font-size: 20px;
}

footer h4{
  font-size: 15px;
  color: red;

}

footer p{
  font-size: 10px;
}



/****************************************/
/****************************************/
/****************************************/
/****************************************/
/************** PLAYERS PAGE ************/
/****************************************/
/****************************************/
/****************************************/
/****************************************/

.players-section{
  margin: auto;
  padding-top: 150px;
  width: 80%;
}

.players-section h2{
  font-size: 40px;
  text-align: center;
  color: red;
}

.grid-container{
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  grid-template-rows: repeat(4, 1fr);
}

.player{
  text-align: center;
  background-color: white;
  height: 400px;
  padding: 15px;
  border: 1px solid black;
}

.player-pic img{
  width: 200px;
  height: 250px;
}

.player-name{
  font-size: 40px;
  color: darkblue;
}

.player-number{
  padding-top: 10px;
  font-size: 30px;
  color: red;
}









/****************************************/
/****************************************/
/****************************************/
/****************************************/
/************** PICTURE PAGE ************/
/****************************************/
/****************************************/
/****************************************/
/****************************************/

.picture-container{
  padding: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}


.picture-container img{
  padding-top: 20px;
  width: 300px;
}

.picture-container img:hover{
  border: 3px solid red;
}




