body {
  background-color: #2d3436;
  background-image: url("./assets/background.png");
  margin: 0;
  margin-top: 4rem;
  font-family: Helvetica, sans-serif;
  overflow: visible;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-container {
  position: absolute;
}

.footer-blurb-container {
  position: relative;
}

h1 {
  font-weight: normal;
}

.contact-us-container {
  display: flex;
  width: 100%;
  height: max-content;
  justify-content: center;
  /* margin-top: 15rem;
    margin-bottom: 14.1rem; */
  /* margin-top: 19rem;
    margin-bottom: 18.7rem; */
}

.contact-us-box {
  display: flex;
  background: #dddddd;
  padding: 1.5rem;
  height: fit-content;
  width: 15rem;
  border: none;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.493);
}

.contact-us-header {
  margin-bottom: 1rem;
  border-bottom: 1px solid black;
  padding-bottom: 0.5rem;
  font-size: x-large;
}

.contact-us-instructions {
  font-size: medium;
  text-align: center;
  margin-bottom: 1rem;
}

.contact-us-email {
  color: #1b7bca;
  -webkit-user-select: none; /* Chrome all / Safari all */
  -moz-user-select: none; /* Firefox all */
  -ms-user-select: none; /* IE 10+ */
  user-select: none;
}

/* .contact-us-box img {
    height: 3rem;
} */

/* .contact-us-email:hover {
  color: #2196f3;
} */

@media only screen and (max-height: 361px) {
  .contact-us-box {
    padding: 0.3rem;
  }

  .contact-us-header,
  .contact-us-instructions,
  .contact-us-instructions a {
    margin-bottom: 0;
  }

  body {
    height: 65vh;
  }
}

/* scrollbar styling */

::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #dddddd;
}

::-webkit-scrollbar-thumb {
  background: #5d6e72;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #56676d;
}
