html {
  scroll-behavior:smooth;
  font-family:Trebuchet MS,sans-serif;
}
body {
  padding:0;
  margin:0;
  background-color:#F0F8FF;
}
/* Style the navbar */
#navbar {
  position:fixed;
  top:0;
  overflow:hidden;
  background-color:#333;
  height:60px;
  width:100%;
  z-index:10000;
}
/* Navbar links */
#navbar a {
  float:left;
  display:block;
  color:#f2f2f2;
  text-align:center;
  padding:19px;
  text-decoration:none;
  font-family:Trebuchet MS,sans-serif;
}
.navContainer {
  display:flex;
  flex-direction:column;
  justify-content:space-around;
  align-items:center;
  width:100%;
  height:100vh;
}
.navContainer img {
  position:absolute;
  left:0;
  right:0;
  height:120%;
  width:100%;
  object-fit:cover;
  z-index:-1;
}
.column1 {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(min(100%,400px),1fr));
  padding:0 10%;
  gap: 60px;
  max-width:1400px;
  justify-self:center;
}
.column1 img {
  width: 100%;
  height: 100%;
  justify-self: center;
}
.column1Statement {
  align-self:center;
  justify-self: center;
}
.column2 {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(min(100%,300px),1fr));
  justify-self:center;
  gap:60px;
  width:80%;
}
.column2Statement {
  align-self:center;
  justify-self:center;
}
.futureStatement {
  text-align:center;
  font-size:300%;
  font-family:'Trebuchet MS','Lucida Sans Unicode','Lucida Grande','Lucida Sans',Arial,sans-serif;
  margin-top:20px;
}
.cardsContainer {
  display:flex;
  justify-content:center;
  width:85%;
}
.cards {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  grid-auto-rows:1fr;
  justify-content:center;
  gap:10px;
}
.card {
  display:flex;
  flex-direction:column;
  box-shadow:0 4px 8px 0 rgba(0,0,0,0.2);
  transition:0.3s;
  width:100%;
  height:100%;
  justify-self:center;
}
.card:hover {
  box-shadow:0 16px 32px 0 rgba(0,0,0,0.2);
}
.card img {
  width:100%;
}
.nameContainer {
  display:flex;
  flex-direction:column;
  padding:2px 10px;
  flex-grow:1;
}
.footer {
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  width:100%;
  height:50%;
  text-align:center;
  background-color:#333;
  color:white;
  margin-bottom:0;
  font-size:1rem;
  font-family:'Comfortaa',cursive;
  padding-top:20px;
  padding-bottom:18px;
  align-items:center;
  justify-content:center;
}
.icons {
  display:flex;
  height:45px;
  justify-content:space-around;
  align-items:center;
}
.icons a {
  width:40px;
  height:40px;
  transition:all ease-in-out 0.2s;
}
.icons a:hover {
  width:45px;
  height:45px;
}
.icons img {
  width:100%;
  height:100%;
}
hr {
  width:100%;
  height:2px;
  margin-bottom:7px;
  margin-right:auto;
  margin-left:auto;
  margin-top:9px;
  color:black;
}

/* Centered text */
.centered {
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}
/* START of Accordian */
.sources {
  display:flex;
  flex-direction:column;
  justify-content:center;
  width:70%;
}
.sources input {
  position:absolute;
  opacity:0;
  z-index:-1;
}
.tabs {
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 4px 4px -2px rgba(0,0,0,0.5);
}
.tab {
  width:100%;
  color:white;
  overflow:hidden;
}
.tab-label {
  display:flex;
  justify-content:space-between;
  padding:1em;
  background:#4b6771;
  font-weight:bold;
  cursor:pointer;
  /* Icon */
}
.tab-label:hover {
  background:#4b6771;
}
.tab-label::after {
  content:"❯";
  width:1em;
  height:1em;
  text-align:center;
  transition:ease 0.35s;
}
.faq-tab-content {
  max-height:0;
  padding:0 1em;
  color:#2c3e50;
  background:white;
  transition:ease 0.35s;
}
.tab-close {
  display:flex;
  justify-content:flex-end;
  padding:1em;
  font-size:0.75em;
  background:#2c3e50;
  cursor:pointer;
}
.tab-close:hover {
  background:#2c3e50;
}
input:checked + .tab-label {
  background:#2c3e50;
}
input:checked + .tab-label::after {
  transform:rotate(90deg);
}
input:checked ~ .faq-tab-content {
  max-height:100vh;
  padding:1em;
}
/* END OF Accordian */
.button {
  cursor:pointer;
  font-family:Trebuchet MS,sans-serif;
  padding:20px;
  border:1px solid #FFFFFF;
  background-color:#2e2e2e;
  color:white;
  font-size:1em;
  box-shadow:1px 6px 6px rgba(0,0,0,0.6);
  transition:all ease 150ms;
  border-radius:4px;
}
.button:hover {
  transform:scale(1.05);
  background-color:#d6d6d6;
  color:black;
  border:1px solid black;
  box-shadow:3px 8px 8px rgba(0,0,0,0.6);
}

@media (max-width: 768px) {
  #navbar a {
    float: none;
    text-align: center;
    width: 100%;
    padding: 10px 0;
  }

  #navbar {
    height: auto;
  }

  .column1, .column2, .cards {
    grid-template-columns: 1fr;
    padding: 0 5%;
    gap: 30px;
  }

  .footer {
    flex-direction: column;
    gap: 10px;
  }

  .sources {
    width: 90%;
  }
}

.main-heading {
  text-align: center;
  font-size: 480%;
  color: whitesmoke;
}

.main-subtitle {
  font-family: monospace;
  font-size: 140%;
  color: whitesmoke;
  text-align: center;
}

.section-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section-padding {
  padding-bottom: 50px;
}

.section-heading {
  text-align: center;
  font-size: 380%;
  color: black;
  padding-top: 100px;
  text-decoration: underline;
}

.flex-center-row {
  display: flex;
  width: 100%;
  justify-content: center;
}

.horizontal-rule {
  height: 5px;
  border-width: 0;
  color: black;
  background-color: black;
}

.georgia-text {
  font-family: Georgia;
  font-size: 140%;
  color: black;
}

.column-content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  padding-bottom: 50px;
}

.upcoming-events-heading {
  padding-bottom: 0.3%;
}

.column2-statement-left {
  justify-content: left;
}

.centered-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sign-up-heading {
  padding-top: 12px;
  padding-bottom: 0.3%;
  font-size: 250%;
}

.join-discord-heading {
  padding-top: 20px;
  padding-bottom: 0.3%;
  font-size: 200%;
}

.faq-heading {
  padding-top: 80px;
  padding-bottom: 0.3%;
}

.team-heading {
  padding-top: 100px;
}

.team-section-intro {
  padding-bottom: 10px;
}

.cards-container-style {
  background-color: mystic;
  padding-bottom: 80px;
}

.footer-section {
  gap: 20px;
  height: auto;
  padding-top: 20px;
  padding-bottom: 18px;
  justify-content: center;
}

.footer-location, .footer-contact {
  padding-top: 0;
  padding-bottom: 0;
}
