/* CSS Document */

body {background-color: rgb(65, 57, 61);}

.header1 {
    float: left;
}

.header2 {
    float: right;
    text-align: right;
    color: white;
    font-size: 24px;
    padding: 20px;
    
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: rgb(190, 30, 45);
    position: -webkit-sticky; 
    position: sticky;
    top: 0;
    clear: both;
}

li {
    float: left;
}

li a {
    display: block;
    color: white;
    text-align: center;
    font-weight: inherit;
    font-size: 24px;
    padding: 14px;
    text-decoration: none;
}

li a:hover {
    background-color: rgb(240, 78, 35);
}
    

.column {
    float: left;
    padding: 0px;
}

.column.side {
    width: 40%;
}

.column.middle {
    width: 60%;
}


.bottomcolumn {
  float: left;
  width: 33.33%;
  padding: 15px;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

@media screen and (max-width: 800px) {
   .column.middle, .column.side, .bottomcolumn {
        width: 100%;
    }
}

h1   {color: white; 
     font-weight: normal; 
     font-size: 20px;
     text-align: center;
}

h2   {color: white; 
     font-weight: normal; 
     font-size: 30px;
     text-align: center;
}


p    { 
    color: rgb(138, 140, 143); 
    font-size: 24px;
    font-style: normal;
    text-align: center;
}

p2 { 
    color: rgb(138, 140, 143); 
    font-size: 20px;
    font-style: normal;
}

img {
    display: block;
    margin-left: auto;
    margin-right: auto;
	max-width: 100%;
	height: auto;
}

.space {
    padding: 4px;
    background-color: rgb(65, 57, 61);
    color: rgb(65, 57, 61);
    text-align: center;
    font-size: 12;
}


.header3 {
    padding: 18px;
    background-color: rgb(65, 57, 61);
    color: white;
    text-align: center;
    font-size: 38px;
}


.footer {
    padding-top: 2px;
	padding-bottom: 2px;
    background: rgb(190, 30, 45);
    margin-top: 0px;

}