body{
    background-color: palevioletred;
}
h1{
    background-color: white;
    text-align: center;
    color:palevioletred
}
h2, h3{
    color: white;
    text-align: center;
    font-size: 24px;
}
p{
    color: white;
    text-align: center;
    font-size: 22px;
}
.hrana{
    background-color: pink;
}

a{
    color: black;
    text-decoration: none;
}
a:visited{
    color: white;
}
a:hover{
    color: yellow;
    text-decoration: underline;
}
a:active{
    color: blue;
}
.float-card {
    padding: 20px;
    border: 1px solid white;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
  }
   
  .tooltip-text {
    visibility: hidden;
    width: 150px;
    background-color: white;
    color: plum;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    bottom: 135%;
    left: 60%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
  }
   
  .tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
  }