@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
@font-face {
    font-family: 'body';
    src: url('../fonts/roboto-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'bodybold';
    src: url('../fonts/roboto-bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    src: url(../fonts/roboto-body.woff);
    font-family: headings;
}
:root {
    --light: #fff;
    --dark: #000;
    --main: #5F9EA0;
    --mainLight: #d2f7f8;
    --mainDark: #05888d;
    --comp1: #A05F9E;
    --comp2: #9EA05F;
    --midLight: #ddd;
    --midDark: #333;
}
* {
	box-sizing: border-box;
}
html {
	height: 100%;
    overflow-y: scroll; /*FORCE VERTICAL SCROLL BAR FOR SHORT PAGES*/
}
body {
    font-family: body;
    height: 100%;
    margin: 0;
    padding: 0;
}
@view-transition {
  navigation: auto;
}
.wrapper {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    min-height: 100%;
}
main {
    margin-bottom: 3rem;
}
article {
    width: 60%;
    margin: 0 auto;
}
h1 {
    color: var(--comp2);
    text-align: center;
}
a {
    text-decoration: none;
    color: inherit;
}
.emphasis {
    color: var(--main);
    font-weight: bold;
}
.easy-button,
.easy-popup-header,
.easy-popup-person-avatar {
    background-color: var(--main)!important;
}
.easy-popup-person-avatar {
    -webkit-filter: none!important;
    filter: none!important;
    opacity: 1!important;
}