@keyframes animace {
    0%{ transform: rotate(0deg);}
    100% {transform: rotate(360deg);}

}
#logo{
    height: 100px;
    width: auto;
    border-radius: 110%;
    border-color: black;
    border-width: 10px;
    border: solid;
}
html{
    font-size:larger;
    text-align: left;
}
#logo:hover{
background-color: gray;
animation: animace 5s;
animation-timing-function: ease-in-out;
}
button{
    height: 50px;
    width: 100px;
    background-color: black;
    color: white;
}
table {
  border: 1px solid white;
  border-collapse: collapse;
  margin: 10px auto;
}

th, td {
  border: 1px solid white;
  padding: 5px 10px;
  text-align: center;
}

th {
  background-color: #333;
}

tr:nth-child(even) {
  background-color: #222;
}

tr:nth-child(odd) {
  background-color: #111;
}

