/* GLOBAL */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-size: 16px;
    line-height: 1.5em;
    font-family: sans-serif;
}

.content{
    padding: 50px;
}

/* MAIN-HEADER */

#header{
    position: fixed;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 25px 50px;
}

#header h1{
    font-size: 2.0rem;
    line-height: 1.0em;
}

#header .main-nav{
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
}

#header .main-nav ul{
    display: none;
}

#header .main-nav ul.open{
    display: inline-block;
}

#header .main-nav ul li{
    display: inline-block;
    list-style: none;
    margin-right: 25px;
    line-height: 1.0em;
}

#header .main-nav .nav-btn{
    display: inline-block;
    width: 16px;
    position: relative;
    top: 5px;
    cursor: pointer;
}

/* TEXT-WRAPPER */

#text-wrapper{
    padding-top: 150px;
}

#text-wrapper .date{
    font-size: 0.7rem;
    line-height: 1.0em;
}

#text-wrapper .heading{
    font-weight: bold;
    margin: 25px 0;
}

#text-wrapper .desc{
    height: 145px;
    overflow: hidden;
}

#text-wrapper .desc.open{
    height: auto;
}

#text-wrapper .more-btn{
    margin-top: 25px;
    color: #3498db;
    text-decoration: underline;
    cursor: pointer;
}

/* IMAGE-WRAPPER */

#image-wrapper img{
    width: 100%;
}
