/* container Styling */
.container {
  width: 100%;
  height: 100vh;
  background-image: url(https://cdn.ghanaweb.com/imagelib/pics/819/81997340.jpg);
  background-size: cover;
}

.heading {
  padding: 10px 0;
  text-decoration: underline;
  text-align: center;
  color: black;
}
/* nav  */

nav {
  text-align: center;
  padding: 10px 0;
  background-color: rgba(0, 0, 0, 0.19);
}

nav > li {
  display: inline-flex;
  padding: 0 20px;
  font-size: 1.5em;
}

nav > li > a {
  text-decoration: none;
  color: white;
}

nav > li > a:hover {
  color: red;
}

/* About Styling */
.about {
  margin-top: 20px;
  padding: 40px 0 50px;
  text-align: center;
}

.about > h1 {
  text-decoration: underline;
  padding-bottom: 20px;
  font-weight: 400;
  font-size: 1.6em;
  text-transform: uppercase;
}

.about > p {
  font-size: 1.5em;
  text-align: left;
  padding: 0 30px;
}

#notification {
  width: 200px;
  height: 50px;
  background-color: #d1bebb;
  color: #000;
  position: absolute;
  top: 40%;
  right: 20%;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.1s ease-in;
}

.invisible {
  opacity: 0;
}

/* Contact Us */
.contact {
  margin-top: 30px;
  padding: 30px 0 40px;
  text-align: center;
}

.contact > h1 {
  text-decoration: underline;
  padding-bottom: 30px;
  font-weight: 400;
  font-size: 1.6em;
  text-transform: uppercase;
}

.formm {
  border-radius: 10px;
  width: 650px;
  border: none;
  padding-left: 10px;
  outline: none;
  border-bottom: 1px solid gray;
  color: black;
  font-size: 1em;
  margin-bottom: 20px;
}

form .formm_submit {
  background-color: black;
  border-color: transparent;
  padding: 10px;
  border-radius: 30px;
  color: white;
  font-size: 13px;
}

input {
  height: 40px;
}

/* Footer Styling */
.footer {
  background-color: lightgray;
  color: black;
  padding: 10px 0;
  text-align: center;
}
