/* global style
--------------------------------------------------*/
html {
    box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}

body {
    font-family: 'DM sans', Arial, Helvetica, sans-serif;
    background-color: #fdf8f4;
    color: #3b4555;
    margin: 50px;
}

.title {
    color: #0c1d37;
}

a {
    color: #0c1d37;
}

a:hover {
    color: #ff6501;
}

/* Layout: container
--------------------------------------------------*/

.container {
    max-width: 500px;
    height: auto;
    padding: 0px 12px;
    margin-left: auto;
    margin-right: auto;
}

/* Layout: grid
--------------------------------------------------*/

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -12px;
}

.col {
    flex: 1 0 0%;
    padding: 0px 12px;
}

/* Components: button
--------------------------------------------------*/

.btn {
    display: inline-block;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;   
    border-radius: 50px;    
}

.btn-primary {
    background-color: #0c1d37;
    color: #fff;

}

.btn-primary:hover {
    background-color: #ff6501;
    color: #fff;
}

/* Components: section-hero
--------------------------------------------------*/

.section-hero {
    background-color: #db9ff8;
    display: block;
    margin-top: 20px;
    max-width: 100%;
    padding: 30px 0px 20px 0px;
    text-align: center;
    overflow: hidden;
}

.hero-title {
    animation-duration: 7s;
    animation-name: slidein;
    animation-iteration-count: infinite;
    animation-delay: 250ms;
    animation-timing-function: linear;
    margin-top: 10px;
    margin-bottom: 32px;
    font-size: 4vw;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #ff0000;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}



 /* Components section-om meg
--------------------------------------------------*/

.story1 {
    margin: 15px 15px 15px 15px;
   max-width: 100%;
   max-height: 300px;
    color: #0c1d37;
    text-align: center;
}

