/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background: url("Topbar.jpeg");
  color: #212D72;
  font-family: 'Lucida Light';
}

p {
  text-align: justify;
}

h5 {margin-bottom: 0;}
h1 {margin-top: 0}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Didot';
}

ul {
  padding-left: 20px;
}

.topbar {height: 20px;}
.bottombar {height: 50px}

.container {
  display: flex;
  }
  
.sidebar1 {
  flex: 1;
}
.sidebar3 {
  flex: 2;
}

.sidebar2 {
  display: flex;
  padding-top: 20px;
  flex: 2;
  justify-content: center;
}
  .navigation {
  display: flex;
  flex-direction: column;
  height: 400px;
  border: 1px solid #212D72;
  outline: 2px solid white;
  outline-offset: 0px;
  box-shadow: 0 0 0 3px #212D72;
  width: 100%;
}
.navlinks {
  justify-content: center;
  align-content: center;
  padding: 20px;
  border: 1px solid #212D72;
}

.main {
  flex: 12;
  height: 500px;
  background-color: white;
  display: flex;
  border: 1px solid #212D72;
  outline: 2px solid white;
  outline-offset: 0;
  box-shadow: 0 0 0 3px #212D72;
  padding: 20px;
}
  .introduction {
    border: 1px solid #212D72;
    outline: 2px solid white;
    outline-offset: 0;
    box-shadow: 0 0 0 3px #212D72;
    padding: 20px;
  }
  .qs {
    border: 1px solid #212D72;
    outline: 2px solid white;
    outline-offset: 0;
    box-shadow: 0 0 0 3px #212D72;
    padding: 20px;
  }
    .dailyqs {
      display: flex;
      justify-content: center;
      text-align: center;
    }
    .q1, .q2, .q3 {
      flex: 1;
      justify-content: center;
    }









