body {
    margin: 5% auto 0;
    background: #f2f2f2; 
    color: #444444; 
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif; 
    font-size: 16px; 
    line-height: 1.8;
    /*text-shadow: 0 1px 0 #ffffff; */
    /* tohle je ted v .content kvuli footeru
    max-width: 73%;
    min-width: 760px;
    */
}

.content {
    margin: 5% auto 2em; 
    max-width: 73%;
    min-width: 760px;
}

code {
    background: white;
}

a {
    border-bottom: 1px solid #444444; 
    color: #444444; 
    text-decoration: none;
}

a:hover:not(.topnav a) {
    border-bottom: 0;
}

.quote {
    margin: 0;
    padding: 15px;
    background: #ffffff;
    border-radius: 8px;
}

.quote blockquote {
    margin: 0;
}

.quote figcaption {
    text-align: right;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.roundedimg {
    border-radius: 8px;
    max-width: 100%;
    margin-top: 16px;
    margin-bottom: 16px;
}

footer {
    text-align: center;
    background-color: #303030;
    color: white;
    float: left;
    min-width: 100%;
    line-height: 1.6;
    font-size: 14px;
    
}

footer a {
    color: white;
    border-bottom: 1px solid white; 
}

.topnav {
    overflow: hidden;
    background-color: #2e2e2e;
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 3px;
    border-radius: 8px;
}

.topnav a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.topnav a:hover {
    background-color: #ddd;
    color: black;
}

.topnav a.active {
    background-color: #7d7d81;
    color: white;
}

.topnav .hamburgermenuicon {
    display: none;
}

@media screen and (max-width: 800px) {
    .content {
        max-width: 95%;
        min-width: auto; 
    }
    
    .topnav a:not(:first-child) {
        display: none;
    }
    .topnav a.hamburgermenuicon {
        float: right;
        display: block;
    }
    .topnav.responsive .hamburgermenuicon {
        position: absolute;
        right: 0;
        top: 0;
    }
    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
    .topnav.responsive {
        overflow-y: auto;
        max-height: 99vh;
    }

}