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

div.content {
	background-color:#f9f8f7;
	height:auto;
	border-radius:10px;

}

div.content p{
	padding-left: 80px;
	padding-right: 80px;
	line-height: 1.5;
}

.container {
	background-color:#990040;
}

h1 {
	color: #990040;
}

header {
	background-color:#180C07;
	color: #FCFCF6; 
	width:100%;
	height:50px;
	text-align:center;
	font-family:Verdana, Geneva, sans-serif;
	font-size:18px;
	padding:3px;
	position:fixed;
	margin-bottom: 10px;
	z-index:2;
	margin-bottom:30px;
	top:0px;
}

/*
#menu {
	background-color: white;
    list-style: none;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    margin-top: 0px;
    padding-top: 30px;
    padding-bottom: 30px;
    font-family: 'OswaldBook', 'Helvetica Neue', 'Helvetica', 'Sans-serif';
    font-size: 14px;
    text-shadow: 0em 0em 0em;
    z-index: 8000;
    box-shadow: 0px 5px 15px #888;
}






/*menu responsive*/


/* Remove margins and padding from the list, and add a black background color */
ul.topnav {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
	background-color: #180C07;
}

/* Hide the list item that contains the link that should open and close the topnav on small screens */
ul.topnav li.icon {display: none;}

/* Float the list items side by side */
ul.topnav li {float: left;}

/* Style the links inside the list items */
ul.topnav li a {
    display: inline-block;
    color: #28160A
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 17px;
}

/* Change background color of links on hover */
ul.topnav li a:hover {background-color: #555;}

/* Hide the list item that contains the link that should open and close the topnav on small screens */
ul.topnav li.icon {display: none;}
  
  /* When the screen is less than 720 pixels wide, hide all list items, except for the first one ("Home"). Show the list item that contains the link to open and close the topnav (li.icon) */
@media screen and (max-width:720px) {
  ul.topnav li:not(:first-child) {display: none;}
  ul.topnav li.icon {
    float: right;
    display: inline-block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens */
@media screen and (max-width:800px) {
  ul.topnav.responsive {position: relative;}
  ul.topnav.responsive li.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  ul.topnav.responsive li {
    float: none;
    display: inline;
  }
  ul.topnav.responsive li a {
    display: block;
    text-align: left;
  }
}
  
  
  
  
  
  
  
  
  
  
  
  
  
  