body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

.topbar {
    background-color: black;
    color: white;
    position: sticky;
    top: 0;
    width: 100%;
    height: 80px;
    display: flex;
    flex-direction: row-reverse;
    z-index: 100;
}

.topbar ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-self: center;
  padding: 10px;
  font-size: larger;
  color: white;
  font-weight: bold;
  list-style: none;
}

.topbar ul li a {
  list-style: none;
  padding: 10px;
  color: white;
  text-decoration: none;
}

.cover {
  width: 100%;
  height: calc(100vh - 80px);
  top: 0;
  display: flex;
  justify-content: center;
  background-image: url("static/quiskit_cover.jpg");
  background-position: top left;
  background-size: cover;
}

.image {
  z-index: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  
}

/* @media (max-width: 768px) {
  .topbar ul {
    display: flex;
    flex-direction: column;
    padding: 10px;
    font-size: larger;
  }

  .image {
    display: flex;
    flex-direction: column;
  }
  
} */

.circle {
  width: 400px;
  height: 400px;
  border-radius: 209.22px/190.78px;
  background-color: #f2f2f2;
  margin: 10px;
}

.circle#blue {
  background: linear-gradient(180deg, rgb(217, 217, 217) 0%, rgb(178.5, 255, 252.6) 100%);
}

.circle#purple {
  background: linear-gradient(180deg, rgb(217, 217, 217) 0%, rgb(193.49, 137.06, 255) 100%);
}

.circle#green {
  background: linear-gradient(180deg, rgb(217, 217, 217) 0%, rgb(137.06, 255, 164.58) 100%);
}

.cover-text {
  align-self: center;
  -webkit-text-stroke: 2px #000000;
  font-family: "Inter-Regular", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 4rem;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

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

#about {
  background-color: rgb(240, 255, 250);
}

#about h1 {
  font-size: xx-large;
  font-weight: bold;
  color: #000000;
  /* text-align: left; */
  /* margin-left: auto; */
}

#about .text {
  /* margin-left: auto; */
  width: 100%;
  column-count: 2;
  text-align: justify;
}

@media (max-width: 768px) {
  .cover-text {
    font-size: 3em;
  }
  #about .text {
    column-count: 1;
  }
}

#about .text p {
  font-size: larger;
  font-weight: 400;
  color: #000000;
}

#about .text p:first-child {
  margin-top: 0px;
}

#about .quick-info {
  margin-top: 20px;
  font-size: larger;
}

#agenda .schedule {
  width: 90%;
  max-width: 800px;
}

#agenda .schedule .day {
  text-align: center;
  margin-top: 10px;
}

#agenda .schedule .day p {
  font-size: larger;
  font-weight: bold;
  line-height: 40%;
}

#agenda .timeline {
  display: flex;
  flex-direction: row;
  justify-content: center;
  /* align-items: center; */
  border: 4px solid #876cf4;
  background-color: #876cf44e;
  border-radius: 20px;
  min-height: 90px;
}


#agenda .timeline .event {
  background-color: #876cf44e;
  padding: 10px;
  border-radius: 20px;
  max-width: 220px;
  align-self: stretch;
  margin: 5px;
}

@media (max-width: 768px) {
  #agenda .timeline {
    flex-direction: column;
  }

  #agenda .timeline .event {
    max-width: fit-content;
  }
}

#speakers {
  background-color: rgb(245,245,245);
  /* width: 100%; */
}

.speaker-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 20px;
  width: 80%;
}

#speakers h1 {
  font-size: xx-large;
  font-weight: bold;
  color: #000000;
  /* text-align: left; */
  /* margin-left: auto; */
}

#speakers img {
  /* make th eimage rounded */
  border-radius: 50%;
  width: 200px;
  height: 200px;
}

#speakers p {
  max-width: 250px;
}

#register h1 {
  font-size: xx-large;
  font-weight: bold;
  color: #000000;
  /* text-align: left; */
  /* margin-left: auto; */
}

/* @media (min-width: 768px) {
  .about p {
    width: 80%;
  }
} */

#contact {
  background-color: rgb(240, 255, 250);
}

.bottombar {
  position: absolute;
  top: 80px;
  /* make this atract attention */
  background-image: linear-gradient(90deg, #876cf4, #f2f2f2);
  width: calc(100% - 20px);
  padding: 10px;
  text-align: center;
}