/*
Theme Name: nixx
Theme URI: http://example.com/nixx/
Author: Der Theme-Autor
Author URI: http://example.com/
Description: Ein klassisches WordPress-Theme, das minimalistisch gehalten ist und nur aus einer style.css und einer index.php besteht.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: minimalistisch, klassisch, blog
Text Domain: nixx

Dieses Theme ist für alle, die ein extrem minimalistisches WordPress-Theme suchen. Es besteht lediglich aus einer style.css und einer index.php Datei.
*/

.flex {
	 display: flex;
		
}

html {
	background:#44ecde;
	
}
body{
	margin:0;
}
figure {
	margin:0;
}
img {
	display: block;
	width:100%;
	height:auto;
}
/*header*/
#logo {
	background-color: #1698eb;
	flex-basis:20%;
}
#site-info {
	background-color:white;
	flex-basis:95%;
}
#site-info h1 {
	background-color: #1698eb;
    font-size: 24px;
    color: aliceblue;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
/* Header Nav */
.headernav {
	background-color:#1698eb;
}
.headernav ul {
	padding-left: 0;
	margin:0;
	padding-top:10px;
	padding-bottom:10px;
	padding-left:10px;
}
.headernav li {
	list-style-type: none; 
	display:inline-block;
	margin-right:5px;
	
}
.headernav li a {
	color: blue; 
	text-decoration:none;
}
.headernav li a:hover {
	color:#44ecde;
}
/* footer menü */

.footer {
	background-color:#1698eb;

}
.footer ul {
	padding-left: 0;
	margin:0;
	padding-top:10px;
	padding-bottom:10px;
	padding-left:10px;
}
.footer li {
	list-style-type: none; 
	display:inline-block;
	margin-right:5px;
	
}
.footer li a {
	color: #cf2e2e; 
	text-decoration:none;
}
.footer li a:hover {
	color:#44ecde;
}
/* Dynamic Sidebar (footer) */
.sidebar {
	flex-basis:33.333334%;
}
#footer-sidebar-1 {
	background-color:#c0e8d4;
}
#footer-sidebar-2 {
	background-color:#b1d8c5;
}
#footer-sidebar-3 {
	background-color:#9fc4b1;
}
/* copyright */
.copyright p {
	text-align: center;
}