.fullPageContainer {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;

}

.thankContainerUp {
  width: 100%;
  display: flex;
  height: 20vh;
  flex-direction: column;
  align-items: center;
  justify-content:flex-start;
  overflow: visible;
}

.thankContainerDown {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content:flex-start;
  overflow: hidden;
}

#sponsorTitle{
  font-size: 40px;
  font-weight: bold;
}

#sponsorText{
  width: 50%;
  font-size: 15px;
}

.sponsors_grid{
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

.sponsor_card{
  width: 50vw;
  height: auto;
  border-radius: 20px;
  display: flex;
  flex-direction: row;
  box-shadow: 10px 10px 49px 0px rgba(0,0,0,0.2);
  padding: 20px;
  background: rgb(18,18,18);
  background: linear-gradient(to bottom, #e38500, #b86b01, #a35f00);
  margin-bottom: 40px;
  animation: float-text 10s ease-in-out infinite;
}

.sponsor_card:nth-child(odd) {
  margin-left: -500px; /* For odd-numbered divs */
}

.sponsor_card:nth-child(even) {
  margin-left: 500px; /* For even-numbered divs */
}

.sponsor_logo_container{
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.sponsor_logo{
  width: 100%;
}

.sponsor_text_container{
  width: 50%;
  margin-left: 5%;
  display: flex;
  flex-direction: column;
  color: black;
  background-color: white;
  padding: 20px;
  border-radius: 20px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 20px;
}

.sponsor_title{
  font-weight: bold;
  font-size: 30px;
  }
  .sponsor_link{
    padding: 10px;
    background-color: #7e61ff;
    width: 40%;
    border-radius: 10px;
    color: white;
    text-decoration: none;
  }
.sponsor_link:hover {
    background-color: #5633f5;
    color: white;
    text-decoration: none;
}
#waves{
  margin-top: 25vh;
}

  