body{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Exo 2";  
  background-color: rgba(255, 255, 255, 0) !important;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/*
.header {
  background-color: rgb(19, 22, 26);
  position: fixed;
  margin: 0;
  top: 0;
  right: 0;
  left: 0;
  display: flex;  
  flex-direction: row;
  align-items: center;
  justify-content: normal;
}

.navbar ul{
    list-style-type: none;
    background-color: hsl(0, 0%, 25%);
    overflow: hidden;
    text-align: center;
}

.navbar a{
    text-decoration: none;
    color: white;
    display: block;
    padding: 15px;
    text-align: center;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: bold;
}

.navbar a:hover{
    background-color: hsl(0, 0%, 10%);
}

.navbar li{
    display: inline-block;
}

.active {
    background-color: hsl(240, 8%, 12%);
}
*/
h1 {
  text-align: center;
  font-weight: 900;
  margin-bottom: 12px;
  font-size: 24px;
}
h2 {
  font-size: 16px;
}

h3 {
  font-size: 16px;
}


div {
  text-align: center;
  /* margin: 12px 0; */
}

input[type="number"] {
  font-size: 18px;
  padding: 8px;
  font-weight: 900;
  text-align: center;
  background-color: white;
  border: 1px solid #c0a600;
  border-radius: 6px;
  margin: 0px 8px 8px 8px;
  
  width: 84px;
  font-size: 18px;
}

select {
  width: 90px;
  font-size: 18px;
  padding: 8px;
  margin: 0px 8px 8px 8px;
}

button {
  font-family: "Exo 2";
  text-transform: uppercase;
  font-weight: 900;
  font-size: 20px;
  margin: 12px 0;
  padding: 10px 20px 10px 20px;
  cursor: pointer;
  letter-spacing: 1px;
  
  color:black;
  border: 1px solid #c0a600;
  background-color:rgba(192, 166, 0, 0.25);
  transition: all 0.5s;
}

button:hover {
	  background-color:rgba(192, 166, 0, 1);
	  color:white;
	}

input[type="text"] {
  font-size: 18px;
  padding: 8px;
  font-weight: 900;
  text-align: center;
  background-color: white;
  border: 1px solid #c0a600;
  border-radius: 6px;
  margin: 0px 8px 8px 8px;
}

/*EXTRA*/
.section:not(:last-child) {
  border-bottom: 1px solid #c0a600; 
  margin-bottom: 10px;           
  padding-bottom: 10px;
}

.container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 80px;                      
  max-width: 1200px;              
  margin: 0 auto;
  align-items: start;
}


@media screen and (min-width: 980px) {
.container > .section:nth-last-child(-n + 3) {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
}

@media (max-width: 800px) {
  .container {
    grid-template-columns: 1fr; /* single column on small screens */
  }
}