@import url('https://fonts.googleapis.com/css?family=Josefin+Sans:400,400i,600,600i');

html, body {
    height:120%;
    font-family: 'Josefin Sans', sans-serif;
}

body {
    color: gray;
    background-color: #eee;
    margin-top: 0;
    margin-bottom: 0;    
    margin-right: 0;
    margin-left: 0;
}

a {
    text-decoration:none
}

.header {
    width: 100vw;
    position:relative;
    overflow:hidden;
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    height:20vh;
    min-height:300px;
    max-height:550px;
    min-width:300px;
    color:#eee;
}

.header:after{
    content:"";
    width:100%;
    height:100%;
    position:absolute;
    bottom:0;
    left:0;
    z-index:-1;
    background: linear-gradient(to bottom, rgba(0,0,0,0.12) 40%,rgba(27,32,48,1) 100%);
}

.header:before{
    content:"";
    width:100%;
    height:2000px;
    position:absolute;
    top:0;
    left:0;
    scale(1.0, 1.0);
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    transform: translateZ(0);
    background:#1B2030 url(../images/cloud-background-2.jpg) 50% 0 no-repeat;
    background-size:100%;
    background-attachment: fixed;
    animation: grow 360s linear 10ms infinite;
    transition: all 0.4s ease-in-out;
    z-index: -2;
}

.header a{
    color:#eee
}

.sides .menu{
    display:block;
    width:40px;
    height:30px;
    border:2px solid #fff;
    border-radius:3px;
    position:absolute;
    right:20px;
    top:20px;
    text-decoration:none
}

.sides .menu:after{
    content:"";
    display:block;
    width:20px;
    height:3px;
    background:#fff;
    position:absolute;
    margin:0 auto;
    top:5px;
    left:0;
    right:0;
    box-shadow:0 8px, 0 16px;
}

.sides {
    flex: 0 0 auto;
    width: 50%
}

.sides .logo {
    display:inline-block;
    width:75px;
    height:75px;
    border-radius:50%;
    background:url(../images/logo.png) center no-repeat;
    background-size:cover;
    box-shadow:0 2px 3px rgba(0,0,0,0.3);
    margin-top: 20px;
    margin-left: 20px;
}

.info {
    width: 100%;
    padding: 20px 0 20px 0;
    text-align: center;
    text-shadow: 0 2px 3px rgba(0,0,0,0.5)
}

.info h1 {
    font-size: 3em;
    margin-top: 0;
}

.info h4 {
    font-size: 1.5em;
}

.info .meta {
    font-size: 0.75em;
    font-style:italic;
}

@keyframes grow{
    0% { transform: scale(1) translateY(0px)}
    50% { transform: scale(1.2) translateY(-400px)}
}

.content{
    padding: 10px;
    background-color: #fff;
    color: #666;
    font-size: 1em;
    background-color: white;
    padding:5% 10%;
    text-align:justify;
    height: 100%;
}

.btn{
    color:#333;
    border:2px solid;
    border-radius:3px;
    text-decoration:none;
    display:inline-block;
    padding:5px 10px;
    font-weight:600
}

.row {
    display: flex;
}

.column {
    flex: 33%;
    text-align: justify;
    margin-left: 2em;
    margin-right: 2em;
}

.abs_logo {
    width: 7em;
    background-color: rgb(22,58,93);
    border-radius: 10px;
    padding: 10px 10px;
    box-shadow:0 2px 3px rgba(0,0,0,0.3);
    margin-bottom: 10px;
}


.card {
    width: 100%;
    box-shadow:0 2px 3px rgba(0,0,0,0.3);
    border-radius: 3px;
}

.column .picture {
    width: 100%;
}

.card h3 {
    text-align: center;
    color: #06f;
}

//.card .picture {
//    width: 100%;
//}

.card .container {
    padding-left: 2em;
    padding-right: 2em;
    padding-bottom: 2em;
}
