#Tabulka_01 {
    display: table-cell;
    vertical-align: right;
    background-color: #eeeeee;
}

.ano {
    margin: auto;
    max-width: 72%;
    padding-top: 75px;
}

h1 {
    color: white;
}

p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.xDD {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

.kork {
    border-radius: 30px;
    padding: 20px; 
    height: auto; 
    animation-name: pog;
    animation: pog 3s infinite;
    text-align: center;
}
  
  @keyframes pog {
    0%   {background-color:steelblue;}
    25%  {background-color:purple;}
    50% {background-color:steelblue;}
    75%  {background-color:purple;}
    100% {background-color:steelblue;}
}
  