/* Conference Page */

h2 {
  font-family: "Gazpacho-Light", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--white);
}

h3 {
  font-family: "Fira Sans", sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  text-transform: none;
  color: var(--white);
}

p {
  font-family: "Fira Sans", sans-serif;
  font-weight: 200;
  font-size: 1rem;
  text-transform: none;
  color: var(--white);
}

#conference {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#conference_title {
  width: 100%;
  height: 100vh;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

#conference_title > h1 {
  font-family: "Gazpacho-Light", sans-serif;
  font-weight: 300;
  font-size: 5rem;
  color: var(--white);
  text-transform: uppercase;
  text-align: center;
  line-height: .5;
}

#conference_title > hr {
  width: 50%;
  border: 1px solid var(--white);
  margin: 1rem auto;
}

#bottom_title {
  display: flex;
  flex-direction: row;
  width: 50%;
  text-align: center;
  justify-content: space-evenly;
  text-decoration: none;
  color: var(--white);
}

#register_button {
  font-family: "Fira Sans", sans-serif;
  font-weight: 200;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--red);
  background-color: var(--black);
  border: 1px solid var(--red);
  padding: .5rem 1rem;
  margin-top: 2rem;
  cursor: pointer;
}

#register_button:hover {
  background-color: var(--black);
  color: var(--dark_blue);
  border: 1px solid var(--dark_blue);
  transition: all .3s ease-in-out;
}

#register_button > a {
  text-decoration: none;
  color: var(--red);
}

#register_button > a:hover {
  color: var(--dark_blue);
  transition: all .3s ease-in-out;
}

#conference_mission {
  width: 50%;
  height: 50vh;
  font-family: 'Fira Sans', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: center;
}

#conference_mission > h2 {
  font-family: "Gazpacho-Light", sans-serif;
  font-weight: 300;
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0;
  align-self: flex-start;
}

#conference_mission > p {
  padding-bottom: 3rem;
  padding-top: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  text-transform: none;
}

#conference_sessions {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

#conference_sessions ul {
  list-style-type: none;
  padding: 1rem;
  margin-bottom: 3rem;
}
#conference_sessions ul > li > h3 {
  font-family: "Gazpacho-Light", sans-serif;
  font-weight: 200;
  font-size: 1.2rem;
  text-transform: none;
  color: var(--white);
}

#conference_sessions ul > li > h3 > b {
  text-decoration: underline;
}

#breakout {
  max-width: 40%;
}

#breakout ul > li > h3 {
  margin-bottom: .2rem;
}

#breakout ul > li > p {
  margin-top: 0;
}

#schedule {
  width: 100%;
  margin-top: 5rem;
  margin-bottom: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#schedule_content {
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding: 1rem;
  margin-bottom: 3rem;
}

.schedule_day {
  display: flex;
  flex-direction: column;
}

.schedule_day > h3 {
  font-family: "Gazpacho-Light", sans-serif;
  font-weight: 200;
  font-size: 1.2rem;
  text-transform: none;
  color: var(--white);
  margin-bottom: 1rem;
}

.schedule_day  ul {
  list-style-type: none;
  align-self: flex-start;
  margin-top: 0;
  margin-bottom: 3rem;
  padding-inline-start: 0;
}

@media (max-width: 1000px) {
  #conference_title > h1 {
    font-size: 4rem;
  }

  #conference_title > p {
    font-size: 0.6rem;
  }

  #conference_title > hr {
    width: 70%;
  }

  #bottom_title {
    width: 70%;
  }

  #bottom_title p{
    font-size: 0.7rem;
  }

  #conference_mission {
    width: 80%;
  }

  #conference_mission > h2 {
    font-size: 1.3rem;
  }

  #conference_sessions {
    width: 80%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: center;
  }

  #conference_sessions h2 {
    font-size: 1.3rem;
  }

    #conference_sessions ul {
    align-self: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-inline-start: 0;
    padding-top: .2rem;
  }

  #conference_sessions ul > li {
    padding: .5rem;
  }

  #conference_sessions ul > li > ul > li {
    padding: 0;
  }

  #breakout {
    max-width: 100%;
  }

  #schedule h2 {
    font-size: 1.3rem; 
  }
  .schedule_day {
    width: 45%;
    margin-bottom: 2rem;
  }

  .schedule_day > h3 {
    font-size: 1rem;

  }

  .schedule_day > ul > li {
    font-size: 1rem;
    padding-bottom: 1rem;
  }
}

@media (max-width: 500px) {
  #conference_title > h1 {
    font-size: 2.5rem;
  }

  #conference_title > p {
    font-size: 0.4rem;
  }
}