/* main style stuff */

body {
  margin: 0;
  min-height: 100vh;
  background-color: ghostwhite;
  background-image: url("marble.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  background-attachment: fixed;
}

h1 {
  color: darkslategray;
  text-align: center;
  margin-top: 40px
}

.about-box {
  max-width: 950px;
  margin: 40px auto;
  padding: 35px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  backdrop-filter: blur(4px);
}

.about-box h3 {
  color: darkslategray;
  text-align: left;
  margin-top: 0;
}

.about-box p {
  font-size: 18px;
  color: #444;
  text-align: left;
  line-height: 1.6;
  margin-bottom: 0;
}


.tagline {
  text-align: center;
}

ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

li {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  background-color: cadetblue;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  position: relative;
}

a {
  color: black;
  text-decoration: none;
}

/* stuff for the hover dropdown menus */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 160px;
  background-color: #466166;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  text-align: left;
  z-index: 1000;
}

.dropdown-content a {
  display: block;
  padding: 10px;
  color: whitesmoke;
}

.dropdown-content a:hover {
  background-color: #254045;
  border-radius: 8px;
}

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