body {
    color: whitesmoke;
    background-color: black;
    font-family: sans-serif;
    display: grid;
    grid-template-columns: 0.3fr 1fr;
    grid-template-areas: 
    "nav nav"
    "aside main";
    margin: auto;
    max-width: 1500px;
    background-image: url(/images/LenylandBW2.jpg);
    background-size: contain;
    background-attachment: fixed;
 }

ul {
    list-style-type: none;
    padding: 0px;
}

nav{
    display: none;
    grid-area: nav;
    top: 0px;
    position: sticky;
    border: solid white;
}

aside {
    grid-area: aside;
    text-align: center;
    left: 0px;
    top: 0px;
    position: sticky;
    align-self: start;
    border-radius: 10px;
    padding-top: 25px;
 }

main {
    grid-area: main;
    text-align: center;
    margin: 10px;
}

section {
    max-width: 800px;
    min-width: 200px;
    margin-top: 25px;
    background-color: rgba(50, 50, 50, 0.95);
    padding: 20px;
    border-radius: 10px;
    
}

.navbar {
    border-radius: 5px;
    font-weight: bold;
    padding: 20px;
    background-color: rgba(50, 50, 50, 0.95);
    margin: 10px;
    flex-direction: row;
}

.navbarTop {
    border-radius: 5px;
    font-weight: bold;
    padding: 20px;
    background-color: rgba(50, 50, 50, 0.95);
    margin: 10px;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: inherit;
}

a:visited {
    color: inherit;
}

a:hover {
    color: slategray;
}

.button, .demoPlayer {
    padding: 5px;
    border-radius: 10px;
    background-color: rgb(60,60,60);
    margin-bottom: 10px;

}

.demoPlayer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
    text-align: center;
}

.demoButtonContainer {
    justify-content: space-evenly;
}

.demoButton{
    background: none;
    border: none;
    color:whitesmoke;
    font-size:larger;
    width: 30px;
    text-align: center;
}

.demoButton:hover {
    color:lightslategray;
}

.demoButton:active {
    color:white;
}

.nuxLogo {
    border-radius: 50%;
    margin-bottom: 10px;
}
.coverPic {
    max-height: 300px;
    width: auto;
}

.profielfoto {
    border-radius: 33%;
    height: 200px;
}

.voorstelrondje {
    display: flex;
    background-image: linear-gradient(to right, #181165, #8d3b69);
    border-radius: 66px;
    margin-top: 20px;
}

@media(max-width: 800px){
    body{
        grid-template-columns: 1fr;
    }

    aside{
        display: none;
    }

    section{
        padding: 5px;
    }

    nav{
        display: block;
    }
}