
body{
    font-family: Verdana, Tahoma, sans-serif;
    font-size: 18px;
}

nav {
    width: 220px;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding: 40px 20px;
    box-sizing: border-box;

    background-color: rgb(99, 99, 99);
    color: white;

}

nav ul{
    list-style: none;
    padding: 0;
}

nav a{
    text-decoration: none;
    color: white;
    display: block;
    padding: 12px 4px;
}

nav a:hover{
    color: lightsalmon;
    transition: 0.5s;
}

main{
    margin-left: 220px;
}

.zdroj{
    text-align: right;
    font-style: italic;
}

.container{
    max-width: 800px;
}