
html, body {
  min-height: 100vh;
  width: 100%;
  padding: 0;
  margin: 0;
}

body{
	font-family: 'Open Sans', Arial, sans-serif;
    background-color: white;
    font-size: 18px;
    line-height: 22px;
    font-weight: 300;
    color: #232323;
}

body:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background-color: #c1d5db;
}


#app {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-direction: column
}

#app > #main {
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
}

#app > header, #app > footer {
  width: 100%;
  z-index: 1;
}

.at{
	clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
}

header {
	z-index:1;
}

header img{
margin: 5px 10px;
}

footer p{
    font-size: 14px;
    text-align: right;
    margin-right: 1rem;
}

#canvas{
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
	display: none;
}

.row{
    display: flex;
	align-items: stretch;
	justify-content: space-around;
	flex-direction: column;
	position: relative;
}

.profile-card {
  display: flex;
  align-content: stretch;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: column;
  position: relative;
  width: 100%;
  text-align: center;
  height:auto;
  border:none;
  box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.4);
  max-width: 350px;
  background-color:#feecca;
  margin-bottom:20px;
}

.profile-card .card-content {
  width: 100%;
  border-radius:0 0 5px 5px;
}

.profile-card .card-footer{
  background:#fef6e8;
}

.profile-card .profile {
  border-radius: 50%;
  max-width: 175px;
  max-height: 175px;
  opacity: 1;
  overflow: hidden;
  background-color: #feecca;
  background: linear-gradient(0, #ffca66, #feecca 75%);
  margin: 35px auto 15px auto;
}
.profile-card h1 {
  font-weight: 600;
  margin: 0 auto 5px;
  font-weight: 600;
  font-size: 28px;
  max-width: 200px;
  line-height: normal;
  text-align: center;
}

.profile-card hr{
	width: 15%;
    height: 2px;
    background-color: #005166;
    border: none;
}

.profile-card h2{
  display: block;
  font-size: 18px;
  margin-top:10px;
}
.profile-card svg {
  display: inline-block;
    font-size: 16px;
    color: #005166;
    text-align: center;
    border: 1px solid #005166;
    fill: #005166;
    width: 24px;
    height: 24px;
    line-height: 24px;
    padding: 5px;
    border-radius: 50%;
    margin:0 5px;
}
.profile-card .icon-block{
    margin: 10px auto;
}
.profile-card .icon-block a{
    text-decoration:none;
    padding-top: 18px;
}
.profile-card svg:hover {
  background-color:#005166;
  color:#fff;
  fill:#fff;
  text-decoration:none;
}

svg:not(:root).svg-inline--fa,
svg:not(:root).svg-inline--fa path {
    overflow: visible;
}

.svg-inline--fa {
    display: inline-block;
    font-size: inherit;
    height: 1em;
    overflow: visible;
    vertical-align: -0.125em;
}


.adjacent_text{
	width: auto;
    background-color: white;
    display: block;
    padding: 0 25px 10px 20px;
	max-width: 300px;
	z-index: 1;
	border-left: 5px solid #005166;
}

.adjacent_text strong{
	color: #005166;
    font-size: 60px;
    display: block;
    line-height: normal;
    margin: 40px 0px 25px;	
}

.adjacent_text p{
    font-size: 16px;	
}

@media only screen and (min-width: 850px) {
 #canvas{
	display:block;
 }
 .row{
	 flex-direction: row;
	 align-items: flex-start;
 }
 .profile-card,
 .adjacent_text{
	height: 500px;
	overflow: auto;
 }
 .adjacent_text{
   width: 60%;
   max-width:none;
   padding-bottom: 0;
 }
 .profile-card{
		margin-bottom:0;
		margin-right: 10px;
 }
}