/* @font-face{
	font-family: verveShadow;
    src: url(verve/VerveShadow.woff);
}
@font-face{
	font-family: verve;
    src: url(verve/Verve.woff);
} */
* {
    box-sizing: border-box;
}
html{
    height: 100%;
    background-color: white; 
}
body {
    min-height: 100vh;
    display: flex;
    margin: 0;
    padding: 0; 
    display: flex;
    flex-direction: column;
}
.body{
    min-height: 65vh;
    display: flex;
    flex-grow: 1;
    margin: 0;
    padding: 0; 
    flex-direction: column;
}
.page-body{
    padding: 2.5%;
    display: flex;
    flex-direction: row;
    min-height: 25em;
}
.page-body-centered{
    padding: 2.5%;
    display: flex;
    flex-direction: column;
    min-height: 25em;
}
.page-even{
    background-color: white
}
.page-odd{
    background-color: rgb(250, 250, 250);
}
.page-content{
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 5%;
    padding-left: 5%;
}
.page-title-area{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 2.5%;
}
.section-title{
    font-weight: bold;
    font-size:1.5em;
    justify-content: flex-start;
}
.section-descr{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.page-title{
    font-size: 1.5em;
    color: rgb(127, 127, 123);
}
.page-text{
    font-size: 1em;
}