@import url('https://fonts.googleapis.com/css?family=Roboto');

body {
    background: url(img/back.jpg) no-repeat top center;
    background-size: cover;
    height: 100vh;

}

.container {
    height: 100vh;
    font-family: "roboto";
    padding: 0px;
    margin: 0px;
    display: grid;
    grid-gap: 0rem;
    grid-template-columns: 0.5fr 1fr 1fr;
    grid-template-rows: 0.1fr 0.2fr 1fr 1fr;
    grid-template-areas:
        "nav nav nav"
        "sidebar titel titel"
        "sidebar ingredients foto"
        "sidebar werkwijze werkwijze"

}

nav {
    grid-area: nav;
    font-family: "roboto";
    font-size: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 1rem;
    text-align: center;
    background-color: black;
    opacity: 80%;
    color: white;
    padding: 10px;

}

#sidebar {
    padding: 20px 10px;
    grid-area: sidebar;

}

button {
    background-color: black;
    padding: 10px;
    font-size: 16px;
    color: white;
    width: 100%;
    border-radius: 12px;
    margin: 0.1rem;
}

#titel {
    grid-area: titel;
    border-style: solid;
    border-radius: 20px;
    text-align: center;
    background-color: black;
    opacity: 90%;
    color: white;
    padding: 10px;
    margin: 15px
}

#titel h1 {
    color: red;
    font-family: "roboto";
    font-size: 30px;

}

#ingredients {
    grid-area: ingredients;
    border-style: solid;
    border-radius: 20px;
    padding: 10px;
    background-color: black;
    opacity: 80%;
    margin: 10px;
    color: white
}

h1 {
    font-size: 30px;
    padding: 10px 10px 10px 10px;
    color: white;
    opacity: 100%;



}


#foto {
    grid-area: foto;
    border-style: solid;
    border-radius: 20px;
    padding: 10px;
    opacity: 80%;
    margin: 10px;
    color: white;

}

#werkwijze {
    grid-area: werkwijze;
    border-style: solid;
    border-radius: 20px;
    padding: 10px;
    background-color: black;
    opacity: 80%;
    margin: 10px;
    color: white
}



}
