body{
    background-color: plum;
    margin-left: 200px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

img{
    width: 400px;
    float: left;
    size: 20px;
}

figcaption{
    font-style: oblique;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 15px;
    /* line-height: 3px; = hvis linjehøyden er mindre en teksten, så kommer tekstlinjene til å gå inni hverandre*/
    clear: both;
    font-size: 1vw;
}

table,tr,td,th{
    border-collapse: collapse;
    border: 1px solid black;
    margin: 5px;
    padding: 5px;
    font-size: 1vw;
}

div{
    float: left;
}

.div2{
    font-size: 1vw;
    line-height: 2;
}

h1{
    font-size: 2vw;
}

container {
    display: flex;
}
@media screen and (max-width: 800px) {
.container {
    flex-direction: column;
}
}

grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}