html{
    color:black;
    font-family: Verdana, Arial, sans-serif;
    background-color: #2D3E4E;
}

#container{
    min-width:900px;
}

nav{
    border-radius: 5px;
    background-color: #E8ECEB;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    padding: 5px;
}

nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

nav ul li {
    display:inline-block;
    border-radius: 5px;
    background-color: #E09E50;
    color: #FFFFFF;
    line-height: 40px;
    font-size:20px;
    padding:0 10px;
}

nav ul li:last-child{
    float: right;
}

nav ul li:hover {
    background-color: #EBC673;
    color: #FFFFFF;
}

nav a {
    display:block;
    text-decoration:none;
    color: #FFFFFF;
}

nav a:hover {
    color: #2D3E4E;
}

nav p{
    float: left;
}

header{
    border-radius: 5px;
    background-color: #8CBDB9;
    height:64px;
    display: flex;
    align-items:center;
    margin-top: 10px;
}

header h2{
    color: #E8ECEB;
}

#logo{
    float: left;
    margin:2px 12px 2px 2px;
    height: 60px;
}

#content{
    display: grid;
    grid-gap: 1em;
    grid-template-columns: 1fr 300px;
    margin: 10px 0px;
}
.item{
    border-radius: 5px;
    background-color: #ffffff;
    padding: 20px;
}

#afbeelding{
    border-radius: 0px;
    padding: 0px;
    border: 0px;
}



.onderdeel{
    background-color: #FFFFFF;
    border: 1px solid black;
    border-radius: 10px;
    margin: 5px;
    padding: 10px;
}
.onderdeel p{
    font-weight: bold;
    margin-top: -5px;
}

.deliverable {
    margin-top: 12px;
}

.deliverable-links {
    font-weight: normal;
    margin: 0 0 8px 0;
}

.deliverable-links a {
    color: #1a5276;
}

.pdf-viewer {
    display: block;
    box-sizing: border-box;
    width: min(100%, 880px);
    height: 92vh;
    margin: 0 auto;
    border: 1px solid #2D3E4E;
    border-radius: 6px;
    background: #f5f5f5;
}

.deliverable-video {
    display: block;
    box-sizing: border-box;
    width: min(100%, 1060px);
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 6px;
    background: #000;
}

.item img{
    width: 100%;
    height:100%;
}

footer{
    border-radius: 5px;
    background-color: #8CBDB9;
    color: #E8ECEB;
    height: 30px;
    padding: 5px 20px;
    display: flex;
    align-items:center;
}


