* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body{
    background-color: lightgray;
}

header>h1,
header>h2 {
    margin: auto;
    text-align: center;
    margin-bottom: 10px;
}

nav>ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
}

nav>ul>li>a {
    background-color: darkgray;
    display: block;
    text-align: center;
    padding: 5px 5px;
    border: black solid 2px;
    color: black;
}

nav>ul>li>a:active {
    background-color: gray;
    color: lightblue;
}

main>article>section>img {
    margin: auto;
    display: flex;
    align-items: center;
    padding: 0px 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

main>article>section>img{
    width: 50%;
}
main>article>section>img#bild{
    padding: 0px;
    margin-top: 0px;
    width: 10px;
}
main>h3{
    margin: auto;
    text-align: center;
}
main>article>h3{
    margin: auto;
    text-align: center;
}
main>article>section>h4{
    margin: auto;
    text-align: center;
}
main>article>section>p#omoss{
    margin: auto;
    text-align: center;
    padding: 20px;
}
main>article>section>table {
    margin: auto;
    width: 70%;
}

main>article>section>table,
main>article>section>table>tbody>tr>th,
main>article>section>table>tbody>tr>td {
    border: black solid 3px;
    border-collapse: collapse;
    padding: 5px 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}

footer{
    margin-top: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-color: white;
}
footer>section{
    text-align: center;
    padding: 25px
}

/*Surfplatta*/
@media screen and (min-width: 600px){
body{
    background-color: lightseagreen;
}
nav>ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    justify-content: center;

}
nav>ul>li>a{
    padding: 10px 70px;
}
main>article{
    display: flex;
    flex-wrap: wrap;
}
main>article>section{
    width: 49%;
}
main>article>section>img{
    width: 50%;
}
main>article>section>img#bild{
    width: 100%;
}
}

/*Dator*/
@media screen and (min-width: 1024px){
body{
    background-color: lightcoral;
}


}