.hero-logo {
  width: 18rem !important;
}

#home {
  height: 100vh;
  display: grid;
  place-content: center;
}

#home > div {
  padding: 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 2rem 0rem 2rem;
  margin: 1rem;
}

#home h1 {
  font-weight: bold;
  margin: 0.5rem 0;
}

#home h2 {
  font-size: 1.5rem;
}

#application-div {
  background-color: var(--purple);
  text-decoration: none;
  padding: 0.6em 1.5em;
  color: white;
  border-radius: 1rem;
  font-weight: 700;
  display: inline-block;
  text-align: center;
  border: 1px solid white;
  box-shadow: 0 0 8px 4px #9000ff, inset 0 0 8px 4px  #9000ff;
}
#application-div:hover {
  background-color: var(--dark-blue) !important;
  color: white !important;
}
@keyframes appexpand {
  from {
    width: 131.41px;
    max-width: 50%;
  }
  to {
    width: 100%;
    max-width: 100%;
  }
}
@keyframes appshrink{
  from{
    width: 100%;
    max-width: 100%;
  }
  to{
    width: 131.41px;
    max-width: 50%;
  }
}
@keyframes appfadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
#application-overlay {
  height: 100%;
}
#application-links {
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  opacity: 0;
}
@keyframes appfadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#application-links a {
  cursor: pointer;
  text-decoration: none;
  color: unset;
  width: 33.3333%;
  height: 100%;
  background-color: var(--purple);
  color: #fff;
  padding: 0.6em 0;
  transition: color 0.3s, background-color 0.3s;
}
@media screen and (max-width: 768px) {
  #application-links a,
  #application-overlay > p {
    font-size: 0.8rem;
  }
  #application-links a{
    padding: calc(0.6em + 0.1rem) 0;
  }
}
#application-links a:hover {
  background-color: var(--dark-blue) !important;
  color: var(--dark-color) !important;
}
#application-links a:first-child {
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}
#application-links a:last-child {
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
#application-links a:nth-child(2) {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}

.btn:hover {
  background-color: var(--dark-blue) !important;
  color: var(--dark-blue) !important;
}

.countdown-border {
  box-shadow: 0px 0px 10px 4px #BB00FF;
  border: 1px solid white;
  color: var(--dark-blue) !important;
  border-radius: 1rem;
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 1rem;
  padding: 0.2rem 0.2rem 0.8rem 0.2rem;
}
.hero-date {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-color);
}

.countdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.countdown .day,
.countdown .hour,
.countdown .min,
.countdown .sec {
  color: var(--dark-color) !important;
  /* text-shadow: 2px 2px gray; */
  padding: 10px;
  text-align: center;
}
.countdown .day .num,
.countdown .hour .num,
.countdown .min .num,
.countdown .sec .num {
  display: block;
  font-size: 40px;
}
.countdown .day .word,
.countdown .hour .word,
.countdown .min .word,
.countdown .sec .word {
  display: block;
  font-size: 20px;
}
/* @media screen and (min-width: 375px) { */
.btn {
  margin: 5%;
  max-width: 50%;
}
.hero-logo {
  width: 13rem;
}
#home h1 {
  font-size: 2rem;
}
.hero-date {
  font-size: 1.5rem;
}
.countdown .day .num,
.countdown .hour .num,
.countdown .min .num,
.countdown .sec .num {
  display: block;
  font-size: 30px;
}
.countdown .day .word,
.countdown .hour .word,
.countdown .min .word,
.countdown .sec .word {
  display: block;
  font-size: 15px;
}
/* } */
@media only screen and (min-width: 768px) {
  .hero-logo {
    width: 15rem;
  }
  #home h1 {
    font-size: 3rem;
  }
  .hero-date {
    font-size: 1.5rem;
  }
  .countdown .day .num,
  .countdown .hour .num,
  .countdown .min .num,
  .countdown .sec .num {
    display: block;
    font-size: 35px;
  }
  .countdown .day .word,
  .countdown .hour .word,
  .countdown .min .word,
  .countdown .sec .word {
    display: block;
    font-size: 20px;
  }
}

@media only screen and (max-width: 600px) {
  #home > div{
    padding-left:0 !important;
    padding-right:0 !important;
  }
}

#transparency-report{
  margin-top: 15px;
  padding: 7px;
  color: white;
  font-weight: 600 !important;
  background-color: var(--purple);
  
  text-decoration: none;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid white;
  box-shadow: 0 0 8px 4px #9000ff, inset 0 0 8px 4px  #9000ff;
}
