/* Importing fonts for the page */
@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');

/* Font settings */
body, h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

p2, p3 {
  font-family: "Raleway", sans-serif;
  text-align: center;
}

h1 {
  text-align: center;
}

/* Body and HTML settings */
body, html {
  height: 100%;
  line-height: 1.8;
  background-color: #EEECE8;
}

/* Background images */
.bgimg-1, .bgimg-2, .bgimg-3 {
  background-position: center;
  background-size: cover;
  min-height: 100%;
}

.bgimg-1 {
  background-image: url("../images/background.jpg");
}

.bgimg-2 {
  background-image: url("../images/bg1.jpg");
  min-height: 25%;
}

.bgimg-3 {
  background-image: url("../images/bg2.jpg");
  min-height: 25%;
}

/* Header */
.header {
  position: unset;
  background: #495057;
  color: #f1f1f1;
  width: 100%;
  height: 95px;
  left: 0px;
  top: 0px;
  margin-bottom: 10px;
}

/* Navigation bar */
.nav {
  background-color: #212529;
  position: fixed;
  top: 0px;
  width: 100%;
  left: 0px;
  z-index: 2;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #212529;
}

li {
  float: right;
}

li a, .dropbtn {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li c, .dropbtn {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover, .dropdown:hover .dropbtn {
  background-color: #DAD7CD;
  color: black;
}

li.dropdown {
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #212529;
  min-width: 12%;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #DAD7CD;
  color: black;
}

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

/* Footer */
footer {
  text-align: center;
  padding: 10px;
  background-color: #212529;
  color: #fff;
}

.btm {
  padding: 10px;
  background-color: #f1f1f1;
  color: #fff;
  text-align: center;
}

.w3-margin-top {
  margin-top: 16px!important;
  margin-left: -10px!important;
}
