@font-face {
	font-family: "volte";
	src: url("fonts/Volte_medium.woff") format("woff");
}
* { font-family: "volte", arial; }
body { margin: 0; }
#view {
	min-height: 100vh;
    background-color: #fff;
    overflow-y: hidden;
	position: relative;
}
h1 { font-size: 25px; }
h2 {
	font-size: 20px;
	color: #fff;
}
p { font-size: 18px; }
.container { width: 100%; }
.content {
    width: 80%;
    margin: auto;
}
#page { 
    overflow-y: auto;
    height: calc(100vh - 60px);
}
#page .content {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#page .content>p { text-align: center; }

#logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}
#logo .icon {
    height: 50px;
    width: 50px;
    margin-bottom: 10px;
}
#logo h1 {
    text-transform: uppercase;
    letter-spacing: 5px;
    margin: 0;
}

#team {
    margin-top: 50px;
    display: flex;
}
#team section {
    position: relative;
    padding: 20px 20px 10px 20px;
    border: 2px solid #000;
    border-radius: 15px;
}
#team h2 {
    top: -38px;
    left: -20px;
    position: absolute;
    color: #fff;
    text-transform: uppercase;
    background-color: #000;
    padding: 10px 15px;
    transform: skew(170deg);
}
#team p {
	color: #000 !important;
}
#legal-disclaimer {
    height: calc(100% - 60px);
    position: absolute;
    bottom: -100%;
    transition: all 0.5s ease-in-out;
    background-color: #343434;
    color: #cdcdcd;
    overflow-y: auto;
}
#legal-disclaimer .sep {
    width: 100%;
    height: 2px;
    margin-bottom: 20px;
    margin-top: 40px;
    background-color: #cdcdcd;
    position: relative;
}
#legal-disclaimer .sep h3 {
    background-color: #343434;
    padding-right: 10px;
    position: absolute;
    top: -30px;
}
#legal-disclaimer.open { bottom: 60px; }
#legal-disclaimer section>p { margin: 0 10px 0 10px; }

footer {
    box-shadow: 1px 0px 5px 0px rgba(0,0,0,0.45);
    -webkit-box-shadow: 1px 0px 5px 0px rgba(0,0,0,0.45);
    -moz-box-shadow: 1px 0px 5px 0px rgba(0,0,0,0.45);
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #343434;
    z-index: 100;
}
footer .content {
    display: flex;
    align-items: center;
    height: 60px;
}
footer p {
    color: #cdcdcd;
    font-size: 16px;
}
footer .icon {
    margin-left: 5px;
    width: 16px;
    height: 16px;
    transition: all .2s ease-in-out;
    transform: rotate(-180deg);
}
footer .icon { fill: #cdcdcd; }
footer a {
    display: flex;
    align-items: center;
}
footer a p {
    margin-left: 10px;
    text-decoration: underline;
}
footer a:hover { cursor: pointer; }
footer a:hover p { color: #fff; }
footer a:hover .icon { fill: #fff; }
footer a.active .icon { transform: rotate(0deg); }

@media screen and (max-width: 800px) {
    #team { flex-direction: column; }
    #ergo {
        margin-left: 0 !important;
        margin-top: 50px;
      	margin-bottom: 60px;
    }
	h3 { font-size: 16px; }
	p { font-size: 14px; }
}
