/** RESET **/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    list-style:none outside none;
    text-decoration:none;
    font-family: 'Kanit', sans-serif;
}
html, body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

#webpage{
    background-color: #000;
    width: 100%;
    height: 100vh;
}

.section-hero{
    float: left;
    width: 100%;
    height: 100vh;
    position: relative;
    background:linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.1)), url(../img/stora_background.png);
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: auto;
}

.hero{
    float: left;
    position: relative;
    width: calc(100% - 240px);
    height: calc(100vh - 120px);
    padding: 60px 120px;
}

.logo{
    float: left;
}

.logo img{
    width: 100px;
    height: 120px;
}

.content{
    float: left;
    width: 100%;
    display: block;
    padding-top:200px;
    padding-bottom: 50px;
}

.coming-soon {
    float: left;
    display: block;
    width: 100%;
    color: rgb(46, 114, 64);
    text-transform: uppercase;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 50px 0;
}

.coming-soon:after{
    content: " ";
    border-bottom: 3px solid rgb(46, 114, 64);
    display: block;
    margin-top: 20px;
    width: 30px;
}

.description{
    float: left;
    width: 100%;
    color: white;
    font-size: 48px;
    font-weight: 600;
    letter-spacing: 1px;
    padding-bottom: 40px;
}

.description p{
    float: left;
    width: 100%;
    margin: 0;
}


ul#countdown {
    position: relative;
    float: left;
    width: auto;
    padding: 6px 0;
    color: #fff;
    background-color: #2E2E2E;
    opacity: 0.8;
    border: none;
    border-radius: 50px;
    overflow: hidden;
    font-family: 'Arial Narrow', Arial, sans-serif;
    font-weight: bold;
}

li {
    padding: 0 12px;
    display: inline-block;
    min-width: 80px;
    width: auto;
    font-size: 24px;
    text-align: center;
    border-left: 2px solid rgba(255,255,255,0.1);
}

li:first-child{
    border-left: none;
}
.label {
    color: rgba(255,255,255,0.4);
    font-size: 15px;
    text-transform: uppercase;
}

@media only screen and (max-device-width: 550px) {

    .content{
        padding-top: 500px;
    }

    .coming-soon {
        font-size: 46px;
    }

    .coming-soon:after{
        width: 50px;
    }

    .description{
        font-size: 92px;
        padding-bottom: 60px;
    }

    .description p:first-child{
        display: none;
    }

    li{
        min-width: 156px;
        font-size: 48px;
    }

    .label{
        font-size: 32px;
    }
}
