@charset "UTF-8";
/* CSS Document */

/* CSS for Responsive Navigation Bar */
.topnav {
  overflow: hidden;
  background-color: rgba(25,19,18,0.7);
  top: 0;
  margin: 0;
}

.topnav a {
  float: left;
  display: block;
  color: rgb(223,217,171);
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  font-family: 'Hind', sans-serif;
}

.topnav a:hover {
  background-color: rgb(223,217,171);
  color: rgb(25,19,18);
}

.topnav a.active {
  background-color: rgb(126, 0, 0);
  color: rgb(223,217,171);
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
.topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

/* CSS for header and paragraph */
h1{
	font-family: 'Bitter', sans-serif;
}
p{
	font-family: 'Hind', sans-serif;
}

/* CSS footer */
.footer{
            padding: 60px 0 !important;
           /* min-height: 100vh;*/
        }
.footer ul {
            margin: 0 !important;
            padding: 0 !important;
            list-style: none!important;
        }
 footer {
    background: rgb(73,16,0);
    color: rgb(223,217,171);
    bottom-margin: 0!important;
	position: absolute;
	width: 100%;
}

footer p {
    padding-top: 10px!important;
    padding-bottom:20px!important;
    margin-top:40px!important;
    text-align: center!important;
	align-content:space-between;
}
footer hr{
	border-color:rgb(136,62,36);
	width:15%;
	
}