body {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  margin: 0;
  background-color: rgb(20,20,20);
  color: antiquewhite;
}

#wrapper {
  text-align: center;
}

#odkazy{
    display: inline-block;
    margin-top: 10px;
    padding: 15px;
    border: 2px solid antiquewhite;
    border-radius: 5%;
}

#odkazy a{
    display: block;
    color:antiquewhite;
    text-decoration: none;
    margin: 5px;
}

#obrazky a {
  display: inline-block;
  line-height: 0;
}

#obrazky img {
  max-width: 30vw; 
  height: auto;
  border-radius: 1%;
  box-shadow: 0 8px 20px rgba(250, 235, 215, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  cursor: pointer;
}

#obrazky img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.8);
}

#obrazky {
  margin-top: 5%;
}


