
/* 
CUSTOM STYLESHEET 
Add all custom styles here, provided is an example from a previous feature
but feel free to delete everything and use your creativity
*/

body{
    scroll-snap-type: y proximity;
    overflow: scroll;
}

@font-face {
    font-family: gill-sans-bold;
    src: url(../media/GillSans-Bold.otf)
}

.cover{
    min-height: 100vh;
    padding: 10vh;
    color: #00253f;
    text-align: center;
    scroll-snap-align: start;
}
.cover > h1{
    font-size: 60px;
    padding-top: 60px;
    vertical-align: middle;
}
.subtitle{
    border-top: 1px solid #00253f;
    padding-top: 50px;
}
.author{
    padding-top: 15vh;
    font-size: double;
}




/* ################## ARTICLE ################ */
.innerwrap{
    scroll-snap-type: y mandatory;
    height: 100vh;
    border-top: 1pt solid;
}

.text, .graph-wrap, .pull{
    position: relative;
    background-color: #f4f8fb;
    margin: 16px;
    padding: 4%;
    box-shadow: 1.5pt 1.5pt 1.5pt 1.5pt #cbcbdc;
    border-radius: 4pt;
}

.pull{
    color:#a93437;
    font-weight: bold;
}

.pull > a{
    color:#a93437;
    text-decoration: underline;
}

/* ################## GRAPHS ################ */
.graph-wrap{
    scroll-snap-align: center;
    margin: auto;
    position: relative;
    min-height: 85vh;
}

.graph{
    min-height: 50vh;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

img {
    margin: 0 auto;
    max-width: 100%;
    display: block;
}

a {
    color: #48b4d1;
    text-decoration: none;
}
a:hover{
    text-decoration: underline;
}

@media (max-width: 765px) {
    .cover {
        height: auto;
    }
}
