/* <copyright>
 Copyright (c) 2014 Contributors as noted in the AUTHORS.md file

 This file is part of Daloops.

 Daloops is free software: you can redistribute it and/or modify
 it under the terms of the GNU Affero General Public License as
 published by the Free Software Foundation, either version 3 of the
 License, or (at your option) any later version.

 Daloops is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU Affero General Public License for more details.

 You should have received a copy of the GNU Affero General Public License
 along with this program.  If not, see <http://www.gnu.org/licenses/>
</copyright> */

*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
@font-face {
  font-family: 'Exo 2';
  font-style: normal;
  font-weight: 400;
  src: local('Exo 2'), local('Exo2-Regular'), url('/fonts/Exo2.woff2') format('woff2'), url('/fonts/Exo2.woff') format('woff');
}
html {
    height: 100%;
    font-size: 16px;
    /* font-family: 'Exo 2', serif; */
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-style: normal;
}
body {
    background: white;
    width: 100%;
    height: 100%;
    font-size: 100%;
    -webkit-perspective: 40em;
    -moz-perspective: 40em;
    perspective: 40em;
    overflow: hidden;

    display: -webkit-flex;
    display:    -moz-flex;
    display:         flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    /* background: url("/images/background.jpg"); */
}
#content {
    width: 100%;
    height: 100%;
}
