* {
  box-sizing: border-box;
}

.button {
  width: 80vw;
  height: 125px;
  text-align: center;
  line-height: 125px;
  margin: auto;
  text-transform: uppercase;
  font-size: 45px;
  margin-bottom: 20px;
}

a {
  text-decoration: none;
}

.logo {
  text-align: center;
  width: 40vw;
  margin: auto;
  /* margin-bottom: 150px;
    margin-top: 100px; */
}

.main {
  margin-bottom: 100px;
}

.sponsor-container {
  margin: 20px 20px 0 0;
  display: flex;
  justify-content: flex-end;
}
.sponsor {
  /*
    position: absolute;
    bottom: 50px;
    right: 50px;
    */
  width: 300px;
}

.dropdown-content {
  transition: opacity 1.5s ease-out;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.dropdown-content.show {
  opacity: 1;
  height: auto;
}
.dropdown-content div.button {
  background-color: #023f85;
  color: #fff;
}
