header>h1{
color: blue;
background-color: paleturquoise;
text-align: center;
border: crimson solid 10px;
border-style: ridge;
}



nav>ul{
    display: flex;
    list-style-type: none;
    justify-content: center;
    gap: 50px;
    margin: 10px auto;
}

nav>ul>li>a{
    padding: 10px 20px;
    display: block;
    border-radius: 15px;
    border: black solid 3px;
    box-shadow: black 10px 6px;
    
}

nav > ul > li > a:link{
    background-color: greenyellow;
}
nav > ul > li > a:visited{
    color: black;
    background-color: red;
}
nav > ul > li > a:hover{
    background-color: crimson;
}

nav > ul > li > a:active{
    color: white;
    background-color: crimson;
    box-shadow: black 1px 1px;
}

nav>ul>li>a.act{
    color: gray;
}

main{
    height: 500px;
    background-color: aquamarine;
}
main>article>section>ul>li{
    list-style-type: circle;
}
main > ul {
    background-color: blueviolet;
    height: 400px;
    text-align: center;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
main > ul > li{
    background-color: rgb(255, 234, 0);
    border: black solid;
    height: 100px;
    width: 100px;   
    font-size: larger;
    font-weight: 900;
    list-style-type: none;
}

main>p#stycke1{
    background-color: aquamarine;
}
main>p#stycke2{
    background-color: lightcoral;
}
main>p.stycke{
    background-color: lightgrey;
}

