.about-background {
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  width: 0;
  background-color: var(--bg-wait);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 0;
  width: 0;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: -1;
}

.about-background.show {
  opacity: 1;
  height: 100%;
  width: 100%;
  z-index: 5001;
}

.about-container {
  display: flex;
  flex-direction: column;
  background-color: whitesmoke;
  gap: 1em;
  align-items: center;
  height: 800px;
  width: 800px;
}

.aboutlogo {
  border: none;
  padding: 0;
  margin: 0;
  height: 150px;
  width: 150px;
  background-size: cover;
  background-image: url('../images//new_gds_2015_R5A_icon.ico');
}

.contact-info {
  width: 300px;
}

.contact-info p {
  width: 100%;
}

.ChartviewerSplash {
  position: relative;
  width: 400px;
  height: 300px;
  background-image: url('../images/stethoscopebackground.png');
  background-size: cover;
  text-align: left;
  font-family: Raleway;
  font-variant: small-caps;
}

.ChartviewerSplash div {
  position: absolute;
  top: 5px;
  left: 5px;

}


.ChartviewerSplash div p:nth-child(1) {
  font-weight: bold;
  font-size: var(--fs-125);
  color: var(--fc-sub-main);
  padding: 0;
  margin: 0;
}

.ChartviewerSplash div p:nth-child(2) {
  color: var(--fc-sub-main);
  font-size: var(--fs-100);
  font-weight: 700;
  margin-top: 1%;
  padding: 0;
}