#buttons button {
  padding: 5px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background-color: #eeeeee;
  color: #283747;
  font-size: 12px;
  font-weight: bold;
  position: fixed;
  text-align: center;
  z-index: 1;
  width: 120px;
  height: 40px;
}

#buttons button.dusnostButton {
  bottom: 10px;
  left: 10px;
  height: 45px;
}
#buttons button.unavaButton {
  bottom: 65px;
  left: 10px;
  height: 50px;
}

#buttons button.lecbaButton {
  bottom: 125px;
  left: 10px;
  height: 50px;
}

#buttons button.kotnikyButton {
  bottom: 10px;
  right: 10px;
  height: 100px;
}

#buttons button.krkButton {
  bottom: 120px;
  right: 10px;
  height: 60px;
}

#buttons button.moreInfoButton {
  bottom: 185px;
  left: 10px;
  height: 60px;
}

#youtube {
  width: 90vw;
}

#buttons .iconTitle {
  display: flex;
  align-items: center; /* Vertical center alignment */
  justify-content: center;
  gap: 5px;
}

#buttons .iconTitle img {
  height: 20px;
  width: 20px;
}

#splash {
  position: absolute;

  display: flex;
  justify-content: center;
  align-items: center;

  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;

  width: 100%;
  height: 100%;

  margin: auto;
  background-color: #000000;
}

.box {
  width: 300px;
  height: 300px;
  background: #1a237e;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.3);
}

.container {
  height: 15px;
  width: 105px;
  display: flex;
  position: relative;
}
.container .circle {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #fff;
  animation: move 500ms linear 0ms infinite;
  margin-right: 30px;
}
.container .circle:first-child {
  position: absolute;
  top: 0;
  left: 0;
  animation: grow 500ms linear 0ms infinite;
}
.container .circle:last-child {
  position: absolute;
  top: 0;
  right: 0;
  margin-right: 0;
  animation: grow 500ms linear 0s infinite reverse;
}

@keyframes grow {
  from {
    transform: scale(0, 0);
    opacity: 0;
  }
  to {
    transform: scale(1, 1);
    opacity: 1;
  }
}
@keyframes move {
  from {
    transform: translateX(0px);
  }
  to {
    transform: translateX(45px);
  }
}

@keyframes move {
  from {
    transform: translateX(0px);
  }
  to {
    transform: translateX(45px);
  }
}
