*{
    background-color: black;
    color: white;
}
@keyframes bounce{
    0% {left:20%;}
    100% {left:80%;}
}
#hlavicka{
    font-size: 24px;
    display: inline-block;
    position: relative;
    animation-name: bounce;
    animation-duration: 3s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;

}
#siteinput{
    border: white;
    border-style: dotted;
}
#helloinput{
    border: aqua;
    border-style: dotted;
}

table, tbody, td, th, tr{
    border: 2px solid;
}
