/*
    Created on : Oct 28, 2016, 8:05:52 PM
    Author     : Juraj Marcin
*/

@import "fonts.css";

body {
    background-color: #222;
    color: #FFF;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    line-height: 36px;
    margin: 0;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0;
    text-align: left;
}
h3,h4,h5,h6 {
    margin: 0;
    vertical-align: central;
}
h1 {
    font-size: 60px;
    line-height: 66px;
}
h2 {
    font-size: 45px;
    line-height: 50px;
}
h3 {
    font-size: 35px;
    line-height: 59px;
}
h4 {
    font-size: 30px;
    line-height: 33px;
}
h5 {
    font-size: 25px;
    line-height: 27px;
}
h6 {
    font-size: 20px;
    line-height: 21px;
}
[data-page]:not([data-page=home]):not([data-page=copyright]) {
    padding: 25px;
    min-height: calc(100vh - 100px);
    text-align: justify;
}
[data-page]:nth-child(even):not([data-page=home]) {
    background-color: #222;
    color: #FFF;
}
[data-page]:nth-child(odd) {
    background-color: #FFF;
    color: #222;
}

/*  Hyperlinks  */
a {
    color: inherit;
    text-decoration: underline;
    opacity: 1;
    transition: opacity 0.5s ease;
}
a:hover {
    opacity: 0.7;
    transition: opacity 0.5s ease;
}
a:active {
    opacity: 0.5;
    transition: opacity 0.5s ease;
}

/*  Social button  */
.social-button {
    height: 32px;
    line-height: 32px;
    margin-top: 32px;
    font-size: 32px;
}
.social-button img {
    height: 32px;
    width: 32px;
    display: inline-block;
    vertical-align: middle;
}
.social-button .username {
    vertical-align: middle;
    display: inline-block;
    height: 32px;
    line-height: 32px;
    margin-left: 6px;
    font-family: "Helvetica Neue", "Helvetica", "Liberation Sans", "Arial", sans-serif;
    font-weight: bold;
}
.social-button a {
    text-decoration: none;
}
@media screen and (max-width: 768px),
screen and (orientation: portrait) {
    .social-buttons {
        text-align: center;
    }
    .social-button {
        max-width: 100%;
    }
	.full-img {
		max-width: 100%;
	}
}

@media screen and (min-width: 1000px) {
    [data-page]:not([data-page=home]):not([data-page=copyright]) {
        padding-left: calc((100vw - 1000px) / 2);
        padding-right: calc((100vw - 1000px) / 2);
    }
}

/*  Copyright  */
.copyright {
    min-height: 0;
    text-align: center;
    padding-top: 25px;
    padding-bottom: 25px;
}