*{
    font-family: arial;
    padding: 0px;
    margin: 0px;
    box-sizing:border-box;
}
body{
background-color: rgb(1, 78, 79);
}
h1{
    text-align: center;
    color:deeppink;
    font-size: 82px;
    font-family:  sans-serif;
    background-color: aqua;
}
nav{
    background-color: black;
    color:aliceblue
}
main{
    padding: 30px 40px;
    background-color: beige;
}
main>p#stycke1{
background-color:aquamarine;
}
#stycke2{
    background-color:lightcoral;
}
main>p.stycke{
    background-color:lightgrey;
}
footer{
    background-color: lightskyblue;
}