/* CSS reset, dit niet aanpassen! */

html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    margin: 20px;
    padding: 0;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
}

/* hieronder mag je eigen CSScode */



body{
    background-color: coral;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    
}
    
p {
    color: black;
    font-size: large;
    text-align: left;
}

h1 {
    color: blue;
    font-size: 150%;
    text-align: left;
}

a {
    color: black;
}

a:hover {
    color: hotpink;
}

#contact {
    color: black;
    text-align: left;
}

h2 {
    color: yellow;
    font-size: 159%;
    text-align: right;
}

h3 {
    color: green;
    font-size: 150%;
    text-align: right;
}

.menu {
    background-color: white;
}

li {
    background-color: white;
}

.mijnDivs {
    background-color: yellow;
    margin: 10px;
    padding: 10px;
    border: 3px solid purple;
}

#mijnDiv1 {
    background-image: url("img/werkplaats.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    text-align: right;
}

#mijnDiv2 {
    background-image: url("img/metaalarbeider.jpg");
    background-color: yellow;
    background-repeat: no-repeat;
    background-position: right;
}

#mijnDiv3 {
    background-image: url("img/plaatje.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    background-color: yellow;
}

img {
    width: 250px;
    height: 200px;
    
}








