@font-face {
    font-family: Shad;
    src: url("ShadowsIntoLight-Regular.ttf");
}

@font-face {
    font-family: Sketch;
    src: url("LittleBird.ttf");
}

body {
    background-color: rgb(185,203,177);
    margin: 0px;
}

h1 {
    font-family: Sketch;
    margin-bottom: 0px;
    margin-top: 30px;
    font-size: 70px;
}

h3 {
    font-family: Sketch;
    margin-bottom: 0px;
}

 p {
    font-family: Shad;

}

.containerText {
    padding-left: 50px;
    padding-right: 50px;
}

.navbar {
  overflow: hidden;
  background-color: rgb(237,192,224);
}

.navbar a {
  float: left;
  font-size: 16px;
  font-family: Shad;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: black;
  padding: 14px 16px;
  background-color: inherit;
  font-family: Shad;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: rgb(218,160,198);
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgb(218,160,198);
  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;
  font-family: Shad;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: rgb(177, 125, 159);
}

.dropdown:hover .dropdown-content {
  display: inline-block;
}

  .footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #f1f1f1;
    color: black;
    text-align: center;
    font-family: Indie;
  }