@charset "UTF-8";
/* CSS Document */

* {
    box-sizing: border-box;
}

.size-1 {
    width:31.3%;}

/*Alla klasser size - ska ha följande inställningar */ 
[class*="size-"] {
    float:left;
	margin:1%;
}

section::after {
    content: "";
    clear: both;
    display: block;
}

body {font-family: Verdana, sans-serif; font-size:13px;}

p {text-align:justify;}

header, nav, section, article, footer {
    
    border:1px solid grey;
    padding:8px;
    max-width:1400px;
    margin: 5px auto 0 auto;
}

nav {background:lightgrey;}
nav ul {list-style-type:none; margin:0; padding:0;}
nav ul li {display:inline; margin:5px;}
nav a:link {text-decoration: none;}
nav a:visited {text-decoration: none;}
nav a:hover {text-decoration: underline; background:#FFC; font-weight:bold;}
nav a:active {text-decoration: none;}

header, footer {background:#5F9EA0;}

article {background:#F0F8FF;min-height:400px;}

