html, body {
    margin: 0;
    padding: 0;
    font-family: "Cabin", serif;
    animation: changeColor 12s infinite;
}

#Container {
    max-width: 1170px;
    margin: 0 auto;
    border-left: 2px dotted black;
    border-right: 2px dotted black;
    height: auto;
}

.hlavicka {
    text-align: center;
}

.uvodni {
    text-decoration: none;
}

#Menu {
    position: sticky;
    top: 0;
    overflow: hidden;
}

#innerMenu {
    background-color: rgb(255, 255, 255);
    border: 2px dotted black;
    max-width: 1170px;
    height: 80px;
    text-align: center;
    font-size: 50px;
}

.menuLink {
    margin-top: 20px;
    color: rgb(155, 97, 11);
    transition: 1s all;
    text-decoration: none;
    font-size: 20px;
    font-weight: 200;
    padding: 8px 50px;
    /*border-radius: 20px;
    text-transform: uppercase;*/
}

.menuLink:hover {
    color: rgb(225, 6, 6);
    font-weight: 500;
    transition: 1s all;
    cursor: grab;
}

.projekt {
    border-bottom: 2px solid black;
}

.odkaz {
    margin-top: 20px;
    padding-bottom: 20px;
    text-align: center;
}

.image {
    margin-top: 10px;
    margin-bottom: 25px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.minifoto {
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 25px;
    max-width: 100%;
}

.logo {
    padding-top: 20px;
    margin: auto;
    max-width: 10%;
}

h1 {
    padding-top: 20px;
    /* margin-left: 15px; */
    color: rgb(225, 6, 6);
    font-size: 36px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
}

h2, h3, h4, p {
    margin-left: 15px;
    margin-right: 18px;
    font-style: light;
}

@keyframes changeColor {
    0% { background-color: rgb(255, 255, 255); }
    25% { background-color: blanchedalmond; }
    50% { background-color: rgb(249, 176, 204); }
    75% { background-color: blanchedalmond; }
    100% { background-color: rgb(255, 255, 255); }
}