h1 {
  font-size: 36px;
  font-weight: bold;
}

#gameofweek {
  text-align: center;
  font-size: 20pt;
  font-weight: bold;
  padding: .5% 0% .5% 0%;
  margin: .5% auto .5%;
  width: 960px;
}

#gameofweek:hover {
  background-color: #27B46E;
  display: flex;
  justify-content: space-around;
  align-content: baseline;
  color: #f3e2b3;
}

.container {
  position: relative;
  width: 724px;
  margin: auto;
}

.container img {
  width: calc(100% - 4px);
  height: auto;
  border: 3px solid black;
  border-radius: 10px;
}

.container .btn {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background-color: #F03613;
  color: #f3e2b3;
  font-size: 16px;
  padding: 22px 34px;
  border: solid 2px;
  cursor: pointer;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
  font-size: 20pt;
}

.container .btn:hover {
  background-color: #EDC02C;
}

#sponsorname {
  display: flex;
  justify-content: space-around;
  padding-right: 3%;
}

#instructions {
  background-color: #F03613;
  color: #f3e2b3;
  width: 674px;
  margin: 20px auto 40px;
  border: groove 5px black;
  padding: 10px 20px 20px;
  border-radius: 10px;
}

#instructions h3 {
  font-size: 18pt;
  font-weight: bold;
  margin: 0 auto 10px auto;
  width: max-content;
  padding: 5px; 
}

#instructions li {
  font-size: large;
  padding: 4px 0;
}

#form-container {
  display:flex;
  flex-wrap: wrap;
}

legend {
  margin-bottom: 15px;
}

button {
  margin-top: 15px;
}

#username-label {
  display:flex;
  align-items: center;
  margin-right: 5px;
}

#user-data {
  
  background-color: #f3e2b3;
  width: max-content;
  border-style: solid;
  border-width: 3px;
  border-color: #F03613;
  margin: 20px auto;
  border-radius: 10px;
  text-align: center;
  padding: 18px;
  
}

#upcoming-games-header {
  display: block;
  text-align: center;
  font-size: 16pt;
  font-weight: bold;
  margin: 30px auto 20px;
  width: 960px;
  justify-content: center;
}


#upcoming-games {
  display: flex;
  width: 960px;
  margin: 0 auto 16px;
  justify-content: space-between;
}

#upcoming-games img {
  border: 2px solid black;
}