html{
  background: #35363d;
}

.body{
  width: 100%;
  font-family: 'Montserrat', sans-serif;
}

img{
  width: 100%;
}

.header{
  height: 90vh;
  background:
    linear-gradient(
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.3)
    ),
    url("background.jpg");
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1rem;
}

.logo{
  width: 40rem;
  height: auto;
}

.date{
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
}

.date .big{
  font-size: 2.5rem;
  font-weight: 300;
}

.date .small{
  font-size: 1.2rem;
  font-weight: 200;
  margin-top: 1rem;
}


.section{
  background: #35363d;
  width: 100%;
  color: white;
}

.top-section{
  background: #111111;
  width: 100%;
  color: white;
  padding-bottom: 3rem;
  position: relative;
  margin-bottom: 5vw;
}

.top-section::after{
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 50vw solid transparent;
  border-right: 50vw solid transparent;
  border-top: 5vw solid #111111;
  position:absolute;
  bottom: -5vw;
}

.container{
  max-width: 1000px;
  padding: 1rem;
  margin-left: auto;
  margin-right: auto;
}

h2{  
  text-align: center;
  font-size: 3rem;
  font-weight: 300;
  margin-top: 4rem;
  font-family: 'Montserrat', sans-serif;
}

p{
  font-weight: 200;
  font-size: 1.1rem;
}

.center{
  text-align: center;
  margin-bottom: 2rem;
}

.row{
  display: flex;
  justify-content: center;
}

.input{
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 .5rem;
}

.input input{
  background: none;
  border: 2px solid white;
  padding: .5rem 1rem;
  color: white;
  font-weight: 200;
  font-size: 1.1rem;
  margin-top: .25rem;
}

.input label{
  text-transform: uppercase;
}

button{
  border: none;
  background: none;
  padding: .75rem 1rem;
  color: white;
  text-transform: uppercase;
  text-decoration: none;
}

button.ghost{
  border: 2px solid white;
  margin-left: .5rem;
  transition: all .25s;
}

button.ghost:hover{
  background: white;
  color: #35363d;
}

button.primary{
  border: 2px solid white;
  background: white;
  color: #35363d;
  padding: 1rem 4rem;
  margin-top: 2rem;
  transition: all .25s;
}

button.primary:hover{
  background: none;
  color: white;
}

.remove{
  font-size: 3rem;
  font-weight: 200;
  margin-top: .75rem;
}

.camper-row{
  margin-bottom: 1rem;
}


@media only screen and (max-width: 600px) {
  .logo{
    width: 90vw;
  }
  
  .date .big{
    font-size: 2rem;
  }
  
  .row{
    flex-direction: column;
  }
  
  .camper-row{
    flex-direction: row;
    margin-bottom: 1rem;
  }
  .camper-row .input{
    flex: 1;
    margin-bottom: 0;
  }
  .input{
    flex: none;
    margin-bottom: 1rem;
  }
}

.success h2{
  padding: 5rem 0;
}

h3{
  text-align: center;
  font-size: 2rem;
  font-weight: 300;
  margin-top: 4rem;
}
.scoreboard{
  display: flex;
  justify-content: center;
}

.scoreboard .left,
.scoreboard .right{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 10rem;
  padding: 1rem;
}

.scoreboard .winner{
  background: rgba(255,255,255,0.1);
}

.scoreboard .team{
  font-size: 1.5rem;
}
.scoreboard .score{
  font-size: 2.5rem;
  font-weight: 300;
}

.runnerup{
  font-size: 1.5rem;
  font-weight: 300;
  text-align: center;
  display: block;
  margin-top: 3rem;
}

.wp-container{
  max-height: 800px;
  width: 100%;
}

.winning-photo{
  width:100%;
  height:100%;
  object-fit: contain
}

.contest-gallery{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-gap: .5rem;
  justify-content: center;
}

.contest-gallery a{
  width: 100%;
  height: 200px;
}

.contest-gallery img{
  width:100%;
  height:100%;
  object-fit: contain
}

.main-gallery{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-gap: .5rem;
  justify-content: center;
}

.main-gallery a{
  width: 100%;
  height: auto;
}

.main-gallery img{
  width:100%;
}

@media only screen and (max-width: 400px) {
  .wp-container{
    max-height: 500px;
  }
  .contest-gallery{
    grid-template-columns: 1fr 1fr 1fr;
  }
  .main-gallery{
  grid-template-columns: 1fr 1fr;
}
}

.poem{
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.4;
}

.food-list-container{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
  margin-top: 4rem;
}

.food-item{
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

.food-item .clan{
  font-size: 2.5rem;
  font-weight: 300;
}

.food-item .headcount{
  color: rgba(255,255,255,0.75);
  font-weight: 200;
  margin-top: .5rem;
}

.food-item ul,
.food-item p{
  font-size: 1.0rem;
  font-weight: 200;
  line-height: 1.5;
}

.scroll-down{
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  bottom: -2rem;
  z-index: 99999;
  left: 0;
  right: 0;
}

.scroll-down .icon{
  color: black;
  background: white;
  display: block;
  border-radius: 100%;
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  margin-top: .7rem;
}

.scroll-down .text{
  font-weight: 200;
}

.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-7px);
  }
}

@media only screen and (max-width: 600px) {
  .schedule-container .event{
    flex-direction: column;
    align-items: flex-start;
  }
  
  .schedule-container .time{
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
  }
  
  .schedule-container .time .big-time{
    font-size: 2.5rem;
  }
  
  .schedule-container .time .small-time{
    font-size: 1rem;
    margin-bottom: .5rem;
    margin-left: .5rem;
  }
  
  .schedule-container .description{
    margin-left: 0;
  }
  
  .food-list-container{
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 2rem;
    margin-top: 4rem;
  }
  .food-item .clan{
    text-align: center;
  }
  .food-item .headcount{
    text-align: center;
  }
}

@keyframes blink {0%{opacity:1;} 50%{opacity:0.5;} 100%{opacity:1;}}

.animate-1{
  animation:blink normal 1.5s infinite ease-in-out;
}

.animate-2{
  animation:blink normal 2.5s infinite ease-in-out;
}

.animate-3{
  animation:blink normal 2s infinite ease-in-out;
}

.animate-4{
  animation:blink normal 1.0s infinite ease-in-out;
}

.animate-5{
  animation:blink normal 3.0s infinite ease-in-out;
}