* {
	box-sizing: border-box;
}

body {
	margin: 0;
    font-family: sans-serif;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100vh;
}
        
.logo {
    height: 75px;
}

.container {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 20px;
}

header, .o-spolecnosti, footer {
    display: flex;
    margin-left: auto;
    margin-right: auto;
	width: 100%;
}

header {    
    justify-content: space-between;    
    padding-top: 24px;
    padding-bottom: 24px;
	background-color: #f5fafa;
}

.o-spolecnosti, footer {    
    flex-direction: column;
}

footer {
	background-color: #f5fafa;
}

p, li {
    text-align: justify;
    text-wrap: wrap;
    line-height: 24px;
    width: 100%;
}

.text-primary {
	color: #40a7a5;
}

@media screen and (max-width: 600px){
    header, .o-spolecnosti, footer {
    display: flex;
    }

    header {
        justify-content: center;

    }

}
    
