main{
  background: url("../images/bg.webp") no-repeat bottom center/cover;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
}

.cta-button{
  font-size: 1.5rem;
  font-weight: 900;
  font-style: italic;
  background: var(--atem-red);
  color: var(--atem-yellow);
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  padding: 18px 53px;
  border-radius: 50px;
  display: inline-block;
}

.cta-button:hover {
  color: var(--atem-yellow);
  transform: scale(1.05);
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 575.98px) {


}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 767.98px) {

}

/* Large devices (desktops, 992px and up) */
@media (max-width: 991.98px) {
  .cta-button{
    font-size: 0.9rem;
    padding: 9px 30px;
  }

  .winners h3{
    font-size: 1.2rem;
  }
  .winner-info h4{
    font-size: .8rem;
  }
  .winner-info p{
    font-size: .6rem;
  }

  .search-container h2{
    font-size: 1.6em;
  }

  .form-select{
    font-size: .8rem;
  }
  .finder select{
    padding: 10px 25px;
  }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (max-width: 1199.98px) {
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (max-width: 1399.98px) {

}


