html, body {
  margin: 0;
  font-family: 'Acme', sans-serif;
  background-color: #030d2c;
}

.topnav {
  background-color: whitesmoke;
  box-shadow: 1px 1px 10px 3px #ccc;
  position: fixed;
  text-align: center;
  min-height: 8vh;
  width: 100%;
  top: 0;
  z-index: 1;
}

.rh-logo {
  padding-top: 10px;
}

.subnav {
  background-color: #e5e7eb;
  position: fixed;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding-top: 70px;
  min-height: 5.4vh;
}

.dropbtn {
  font-family: 'Acme', sans-serif;
  background-color: #e5e7eb;
  color: rgb(27, 27, 27);
  padding: 15px;
  font-size: 12pt;
  border: none;
  cursor: pointer;
}

.dropbtn:hover, .dropbtn:focus {
  background-color: #c9c9ca;
}


.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 90px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 11pt;
}

.dropdown a:hover {background-color: #ddd;}

.show {
  display: block;
}

.showcase {
  width: 100%;
  min-height: 55vh;
  padding-top: 250px;
  background-position: center;
  background-repeat: no-repeat;
  background-size:cover;
  background-image: url("../imgs/doctors-patient.jpg");
}

.showcase-text {
  font-family: 'Satisfy', cursive;
  font-size: 50pt;
  margin: 0px 0px 90px 25px;
  padding: 10px;
  width: 30%;
}

.more-info {
  font-family: 'Acme', sans-serif;
  margin-left: 100px;
  width: 150px;
  height: 40px;
}

footer {
  background-color: #030d2c;
  color: aliceblue;
}

.footer-flex {
  font-family: 'Acme', sans-serif;
  justify-content: space-between;
  padding-top: 10px;
  font-size: 9pt;
  margin: auto;
  display: flex;
  width: 95%;
  min-height: 22vh;
}

.footer-left {
  display: flex;
  text-align: left;
  flex-direction: column;
  justify-content: center;
}

.lf-title {
  font-size: 16pt;
  color: whitesmoke;
}

.footy-link {
  text-decoration: none;
  color: whitesmoke;
  font-size: 10pt;
  margin: 5px 0px;
}

.footer-mid {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.copyright {
  font-family: 'Satisfy', cursive;
  color: whitesmoke;
  margin: 0;
  font-size: 10pt;
}

.footy-logo {
  width: 70%;
}

.footer-right {
  display: flex;
  font-family: 'Sedgwick Ave Display', cursive;
  font-size: 15pt;
  color: whitesmoke;
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-end;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #030d2c;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

@media screen and (max-width: 1670px) {
  .showcase {
    width: 100%;
    min-height: 40vh;
    padding-top: 250px;
    background-position: center;
    background-repeat: no-repeat;
    background-size:cover;
    background-image: url("../imgs/doctors-patient.jpg");
  }

  .footer-flex {
    font-family: 'Acme', sans-serif;
    justify-content: space-between;
    padding-top: 10px;
    font-size: 9pt;
    margin: auto;
    display: flex;
    width: 95%;
    min-height: 31.5vh;
  }

  
.showcase-text {
  font-family: 'Satisfy', cursive;
  font-size: 30pt;
  margin: 0px 0px 10px 25px;
  padding: 10px;
  width: 30%;
}

.more-info {
  font-family: 'Acme', sans-serif;
  margin-left: 50px;
  width: 150px;
  height: 40px;
}

}

@media screen and (max-height: 850px) {
  .subnav {
    background-color: #e5e7eb;
    position: fixed;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding-top: 62px;
    min-height: 5.4vh;
  }
}