body {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
    margin: 0;
  padding: 0;
  position: relative;
  }
  
  @keyframes gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  h1{
    text-align: center;
    font-size: 100px;
    margin: 10px 0;
  padding: 25px;
  }

  header {
    text-align: center;
    color: white;
  }
  
  .threeD {
    color: rgb(0, 0, 0);
    white-space: nowrap;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 100px;
    font-family:  "Montserrat", sans-serif;
    letter-spacing: 0.1em;
    transition: 0.3s;
    text-shadow: 1px 1px 0 rgb(0, 0, 0), 1px 2px 0 rgb(0, 0, 0), 1px 3px 0 rgb(0, 0, 0), 1px 4px 0 rgb(0, 0, 0),
      1px 5px 0 rgb(0, 0, 0), 1px 6px 0 rgb(0, 0, 0), 1px 7px 0 rgb(0, 0, 0), 1px 8px 0 rgb(0, 0, 0),
      5px 13px 15px black;
  }
  
  .threeD:hover {
    transition: 0.3s;
    transform: scale(1.1)translate(-50%, -50%);
    text-shadow: 1px -1px 0 rgb(255, 111, 190), 1px -2px 0 rgb(255, 111, 190), 1px -3px 0rgb(255, 111, 190),
      1px -4px 0 rgb(255, 111, 190), 1px -5px 0 rgb(255, 111, 190), 1px -6px 0 rgb(255, 111, 190), 1px -7px 0 rgb(255, 111, 190),
      1px -8px 0 rgb(255, 111, 190), 5px -13px 15px black, 5px -13px 25px #808080;
  }
  
body {
  height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
}
.multi-button {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.multi-button button {
  background: white;
  border: 4px solid black; 
  border-radius: 12px;
  cursor: pointer;
  font: 600 1.5rem/1.25 "Montserrat", sans-serif;
  letter-spacing: 4px; /* Nahrazeno za pevnou hodnotu */
  margin: 0.5rem;
  padding: 0.5em 0.75em;
  position: relative;
  text-transform: uppercase;
}

.multi-button button::before,
.multi-button button::after {
  content: "";
  position: absolute;
  transition: all 0.125s ease-in-out;
}

.multi-button button.cut {
  background: none;
  border-color: transparent;
}

.multi-button button.cut::before,
.multi-button button.cut::after {
  transition: all 0.175s ease-in-out;
}

.multi-button button.cut::before {
  background: black;
  border: 0px dashed black;
  left: -4px;
  top: -4px;
  right: -4px;
  bottom: -4px;
  z-index: -1;
}

.multi-button button.cut:hover::before,
.multi-button button.cut:focus::before {
  background: white;
  border-width: 4px;
}

.multi-button button.cut::after {
  background: white;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
}
  
.corner-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: auto;
}

.corner-img-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 350px;
  height: auto;
}

.corner-img-top-left {
  position: fixed;     
  top: 0;
  left: 0;
  width: 400px;        
  height: auto;
  z-index: 1000;       
}
table {
  width: 100%;
  border-collapse: collapse;
  border: none;
  justify-content: center
}
td, th {
  padding: 10px;
  text-align: center;
  border: none;
}

td {
  font-size: 20px;
  color: white;
  text-align: center;
  vertical-align: middle;
 }

tr td {
  border-bottom: 1px solid #ccc;
}


h2 {
  font-size: 35px;
  color: #f9f9f9;
}

tr:nth-child(even) {
  background-color:none;
}

img {
  max-width: 100%;
  height: auto;

}
td{
  background-color: transparent;
}
.obrazkova-tabulka img {
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background-color: transparent; 
 
}

p {
  font-size: larger;
  color: white;
}

.gallery {
  display: flex;
  gap: 16px;
  padding: 20px;
  overflow-x: auto; 
}

.gallery-item {
  flex: 0 0 auto;
  width: 300px;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.caption {
  padding: 10px;
  font-size: 14px;
  color:black;
  font-weight: bold;
}

.center-image {
  max-width: 70%;
  height: auto;
  border-radius: 8px;
}

table.konicky {
  width: 100%;
  border-collapse: collapse;
  margin: auto;
}

table.konicky td {
  text-align: center;
  vertical-align: top;
  padding: 20px;
}

table.konicky img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto 10px auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

table.konicky h2 {
  text-align: center;
  margin-top: 40px;
}
