@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
}

.pageHeader {
  top: 0;
  position: fixed;
  width: inherit;
  max-width: inherit;
}

.headingInfo {
  margin: 30px auto 0px;
  width: 80%;
  height: 50px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.userGreeting {
  width: 42%;
  display: flex;
  justify-content: flex-start;
  padding: 10px 15px;
}

.dateInfo {
  padding: 10px 15px;
}

.navbar {
  margin-top: -0px;
  display: flex;
  justify-content: space-between;
  background-color: #f5f5f5;
}


.divText {
  color: darkblue;
}


.topnav {
  margin-top: 20px;
  margin: 0px auto 0px auto;
  overflow: hidden; 
}

.active {
  background-color: #04aa6d;
}

.topnav a {
  float: left;
  display: block;
  /* color: #f2f2f2; */
  color: darkblue;
  text-align: center;
  padding: 14px 16px;
  text-decoration: underline;
  font-size: 25px;
}

.active {
  background-color: #04aa6d;
  color: white;
}

.topnav .icon {
  display: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 20px;
  border: none;
  outline: none;
  color: darkblue;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:hover,
.dropdown:hover .dropbtn {
  background-color: #ececec;
  color: darkgray;
  border-radius: 8px;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.headingSave {
  width: 100%;
  height: 210px;
  background: #ececec;
  margin-top: -40px;
  border-bottom: 2px solid darkblue;
}

.heading {
  top: 0;
  width: 100%;
  height: 160px;
  background: #ececec;
  padding-bottom: 30px;
  /* margin-top: -40px; */
  border-bottom: 2px solid darkblue;
  display: flex;
  position: fixed;
}

#openBook {
  border-radius: 50px;
}

.imgDiv {
  /* float: left; */
  margin-top: 20px;
}

.imgDiv2 {
  /* float: right; */
  margin-top: 30px;
  margin-right: 20px;
}

.orgName {
  width: 400px;
  color: darkblue;
  align-items: center;
  text-align: center;
  margin: auto;
  padding-top: 20px;
}

.orgName h1 {
  margin-bottom: 2px;
}

.orgName h2 {
  margin-top: 5px;
}

.orgName h3 {
  color: darkgreen;
}

#pStyle {
  font-weight: bold;
  text-decoration: underline;
}

.joinReadDiscovery {
  width: 90%;
  border: 1px solid black;
  text-align: center;
}

.joinReadDiscovery a {
  color: darkblue;
  font-size: 25px;
  font-weight: 700;
  margin: auto;
}

@media screen and (max-width: 900px) {
  .headingInfo {
    display: flex;
    flex-direction: column;
    height: 100px;
    /* gap: -50px; */
    justify-content: center;
  }

  #todaysDate {
    margin-top: -10px;
  }
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child),
  .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {
    position: relative;
  }
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {
    float: none;
  }
  .topnav.responsive .dropdown-content {
    position: relative;
  }
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
  .orgName h1 {
    font-size: 20px;
  }
  .orgName h2{
    font-size: 20px;
  }
  .orgName h3{
    display: none;
  }
}