html {
}

body {
    font-family: 'Exo', sans-serif;
    background-color: #212529;
    background-image: url(../images/kultura.jpg); 
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

main {
    background-color: transparent;
    width: 320px;
    margin: auto auto 100px auto;
}

a {
    transition: 0.5s;
}

a:link, a:visited {
    text-decoration: none;
    color: #333333;
}

a:hover {
    background: #aaaaaa;
}

h1 {
    font-weight: bold;
    color: #ffffff;
}

h2 {
    color: #ffffff;
    font-size: 1.5em;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    background: #cccccc;
    text-align: center;
    display: block;
    margin: 10px 0 10px 0;
    padding: 0;
    border-radius: 10px;
}

li a {
    border-radius: 10px;
    display: block;
    padding: 10px;
}

.link {
    color: #000000;
}

.special {
    margin-top: 2em;
    margin-bottom: 2em;
    background-color: #a9cce3;
    animation-duration: 1.25s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: shimmer;
    animation-timing-function: linear;
    background: darkgray;
    background: linear-gradient(to right, #eeeeee 10%, #a9cce3 18%, #eeeeee 33%);
    background-size: 800px 104px;
}

@keyframes shimmer {
    0%{
        background-position: -468px 0
    }
    100%{
        background-position: 468px 0
    }
}

.special a:hover {
    background-color: #70b7e4;
}

#bio {
    text-align: center;
    padding: 20px 0 20px 0;
    color: #ffffff;
}

#header {
    margin: 50px 0 30px 0;
    text-align: center;
}

#header img {
    width: 300px;
    height: 300px;
    margin-bottom: 10px;
    animation: spin 4s linear infinite;
}

@keyframes spin { 
    100% { 
        transform:rotate(360deg); 
    } 
}
