/* CSS Document */
body {
	font-family: 'Raleway', sans-serif;
	padding: 0;
    margin: 5px;
    
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
    
    min-width: 600px;
}

#title_container, #nav, #content {
    margin-left: auto;
    margin-right: auto;
    max-width: 750px;
    min-width: 500px;
    margin-top: 50px;
    position: relative;
    
}

#title_container {
    height: 80px;
}

#nav {
    text-align: justify;
    -ms-text-justify: distribute-all-lines;
    text-justify: distribute-all-lines;
    text-align-last: justify;
    
    height: 50px;
}

#nav>div {
    display: inline-block;
    height: 50px;
    padding-top: 10px;
    
    vertical-align: top;
    -webkit-transition: padding-top 0.5s;
    -moz-transition: padding-top 0.5s;
    -o-transition: padding-top 0.5s;
    transition: padding-top 0.5s;
}

h1, h2 {
	font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

h1 {
	color: #393939;
	font-size: 60px;
    position: absolute;
    left: 0;
    bottom: 0;
}

h2 {
	color: #6c6c6c;
    -webkit-transition: color 0.5s;
    -moz-transition: color 0.5s;
    -o-transition: color 0.5s;
    transition: color 0.5s;
    
    font-weight: 100;
    font-size: 200%;
}

#nav>div:hover>h2 {
	color: #000000;
	cursor: pointer;
}

#content {
    display: block;
    color: #4a4a4a;
    text-align: justify;
    
    font-size: 120%;
    
    font-weight: 300;
}