body {
    background-image: url('../bilder/pexels-tamanna-rumee-52377920-8823334\ \(1\).jpg');
    background-repeat: no-repeat;   
    background-size: cover;         
    background-position: center;    
    background-attachment: fixed;
}
.infobox {
    display: grid;
    grid-template-areas: 
    'header header header header'
    'section article1 article1 atricle1'
    'article2 article2 article2 aside'
    'article3 article3 article3 aside';
    margin: 0 auto;
    width: auto;
     font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
}
.rubrik {
    text-align: center;
}
header {
    grid-area: header;
}
section {
    grid-area: section;
}
.article1 {
    grid-area: article1;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
}
.article2{
    grid-area: article2;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
}
.article3 {
    grid-area: article3;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
}
aside {
    grid-area: aside;
}
img {
    width: 180px;
    border: 2px outset rgb(108, 83, 234);
    border-radius: 15px;
    margin: 10px;
}