body {
  font-family: 'Quicksand', sans-serif;
  color: white;
  font-size: 17px;
}

.box {
  background-color: #009688;
  /* height: 600px; */
  margin-left: 20%;
  margin-right: 20%;
  margin-top: 50px;
  margin-bottom: auto;
  padding-bottom: 20px;
  box-shadow: 2px 2px #000000;
  border-radius: 0.5%;
  position: absolute;
}

.banner {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('../images/ghana.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

p {
  text-align: left;
}

h2 {
  font-size: 36px;
  padding-top: 20px;
}

h1 {
  font-size: 50px;
  padding-top: 20px;
  text-align: center;
  font-family: 'Gloria Hallelujah';
}

.container {
  width: 80%;
  margin: auto;
}

#year-input {
  border-radius: 5px;
  width: 60px;
  height: 20px;
  box-shadow: 2px 2px #000000;
}

#month-input {
  border-radius: 5px;
  width: 60px;
  height: 20px;
  box-shadow: 2px 2px #000000;
}

#day-input {
  border-radius: 5px;
  width: 60px;
  height: 20px;
  box-shadow: 2px 2px #000000;
}

#get-name {
  border-radius: 5px;
  color: #ffffff;
  background-color: #fc0606;
  text-align: center;
  border: solid 1px #000000;
  width: 108px;
  height: 32px;
  font-size: 13px;
  box-shadow: 2px 2px #000000;
}

#result {
  text-align: center;
}

.content {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: white;

}


p {
  margin: 20px auto;
  font-weight: 100;
  line-height: 25px;
}

.research {
  text-decoration: underline;
  color: white;
}

.clear {
  border-radius: 5px;
  color: #ffffff;
  background-color: #fc0606;
  text-align: center;
  border: solid 1px #000000;
  width: 108px;
  height: 32px;
  font-size: 13px;
  box-shadow: 2px 2px #000000;
}

.btn {
  width: 200px;
  padding: 15px 0;
  text-align: center;
  margin: 20px 10px;
  border-radius: 25px;
  font-weight: bold;
  border: 2px solid #009688;
  background: transparent;
  color: white;
  cursor: pointer;
  position: relative;
  overflow: hidden;

}

span {
  background: #009688;
  height: 100%;
  width: 0;
  border-radius: 25px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transition: 0.5s;
}

.btn:hover span {
  width: 100%;
}

.btn:hover {
  border: none;
}

a:hover {
  color: #006B3F;
}

.navbar {
  display: flex;
  justify-content: center;
  position: sticky;
  top: 0;
}

.navbar ul {
  display: flex;
  list-style: none;
  margin: 20px 0py;
}

.navbar ul li {

  font-size: 1.1rem;
  font-weight: bold;
}

.navbar ul li a {
  text-decoration: none;
  color: white;
  padding: 8px 25px;
  transition: all .5s ease;
}