@font-face
{
    font-family: 'Rocher';
    src: url('webfonts/RocherColorGX.woff2');
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body
{
    background-color: #edf2fc;
}

.hero
{
    width: 100%;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.logo
{
    width: 300px;
    cursor: pointer;
}
.info{
    margin-left: 8%;
    margin-top:  8%;
}
.info h1{
    font-size: 3em;
    color: #444242;
}
.info p{
    font-size: 2em;
    color: #606163;
    line-height: 22px;
    margin-top: 10px;
    margin-bottom: 30px;
}

.social{
    margin-left: 8%;
    margin-top: 25px;
    width: 100%;
}
.social a{
    font-size: 42px;
    color: #606163;
    margin-right: 20px;
}
.social a:hover{
    color: #ff4321;
}

/* *********************************/
/* ********** Timeline *************/
/* *********************************/

#timelinewrapper{
    margin:0 10px;
    display: flex;
    overflow: auto;
    background-color: #ffffff;
}

.timelinecontent h1
{
    text-align: center;
    border: 1px dotted grey;
}

.timelineelement
{
    background-color: #f4f4f4;
    overflow: hidden;
    white-space: nowrap;
    margin:4px;
    padding:4px;
    border-radius: 8px;
}

.timelinetext
{
    display: inline-block;
}

.timelineicon
{
    max-height: 16px;
    max-width: 16px;
    margin:2px;
    vertical-align: middle;
}

/* *********************************/
/* ********* Navigation ************/
/* *********************************/

nav{
    width: 84%;
    margin: auto;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}

a.button1
{
    display:inline-block;
    padding:0.35em 1.2em;
    border:0.1em solid #000000;
    margin:0 0.3em 0.3em 0;
    border-radius:0.12em;
    box-sizing: border-box;
    text-decoration:none;
    font-family:'Roboto',sans-serif;
    font-weight: bold;
    color: #000000;
    text-align:center;
    transition: all 0.2s;
}
a.button1:hover
{
    color:#000000;
    background-color: #6fa440;
}
@media all and (max-width:30em)
{
    a.button1
    {
        display:block;
        margin:0.4em auto;
    }
}

.bouncy
{
    animation:bouncy 5s infinite linear;
    position:relative;
}
@keyframes bouncy
{
    0%{top:0em}
    40%{top:0em}
    43%{top:-0.45em}
    46%{top:0em}
    48%{top:-0.2em}
    50%{top:0em}
    100%{top:0em;}
}

/* *********************************/
/* ********* Info Name ************/
/* *********************************/

.rocher
{
    font-family: 'Rocher';
    font-family: Rocher;
    base-palette: 7;
    font-palette: --Mint;

}

/* *********************************/
/* ********* Flex layout ************/
/* *********************************/
#scene-home{
    width: 100%;
}

.container {
    margin: auto;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.flex {
    padding: 10px 20px 10px 20px;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.flex:after {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 100%;
    margin-top: 10px;
    width: 100%;
}
