*{
    padding:0px;
    Margin:0px;
    box-sizing: border-box;
}
body{
    background-color: beige;
}
header > h1{
    color:yellow;
    background-color:red;
    text-align: center;
    font-size: 50px;
    font-family: Courier, monospace;
    margin: 50px;
    border: black solid 20px;
    border-radius: 30px;
    padding: 10px 20px

}
main{
    background-color: aquamarine;
}
p#stycke1{
    background-color: bisque;

}
p#stycke2{
    background-color: lightcoral;

}
main > p{
    background-color: red;

}
img{
    border: black dashed 30px;
}
main > p, footer{
    background-color: aqua;
}

