.container {
    display: grid;
    width: 800px;
    border: 1px black solid;
    grid-template-columns: 200px 400px 200px;
    margin-right: auto;
    margin-left: auto;
    font-family: Arial, Helvetica, sans-serif;
    grid-template-areas:
    "header header aside"
    "section article aside"
    "footer footer footer";}
.pink {
    grid-area: header;
    background-color: #ff6666;
    text-align: center;
    font-weight: bold;
    color: white;
    height: 50px;
    font-size: 25px;
    padding-top: 15px;
    border: 1px black solid;}
.yellow {
    grid-area: aside;
    text-align: center;
    padding-top: 15px;
    font-weight: bold;
    font-size: 20px;
    background-color: #ffff00;
    border: 1px black solid;}
.pris {
    margin: auto;
    border: red 1px solid;
    background-color: white;
    height: 50px;
    width: 150px;
    font-size: 14px;
    font-weight: normal;
    text-align: center;}
.superpris {
    font-weight: bold;
    font-size: 20px;}
.green {
    grid-area: section;
    text-align: center;
    padding-top: 10px;
    background-color: #04fa06;
    border: 1px black solid;}
section nav {
    margin: auto;
    background-color: white;
    font-weight: bold;
    border: 1px black solid;
    width: 150px;
    height: 80px;}
.grey {
    grid-area: footer;
    background-color: rgb(153, 152, 152);
    text-align: center;}
.frukter {
    font-weight: bold;
    padding-top: 30px;
    font-size: 16px;}
.banana{
    font-weight: bold;
    font-size: 14px;}
.factbanana {
    font-size: 12px;
   }
article {
    padding:10px;
    font-size: 12px;
}
img {border: 1px black solid;}
footer {
    height: 50px;
    padding-top: 15px;}
.name {font-size: 30px;}
a {font-size: 12px;}