body {
  font-family: 'Noto Sans', sans-serif;
}


.footer .icon-link {
  font-size: 25px;
  color: #000;
}

.link-block a {
  margin-top: 5px;
  margin-bottom: 5px;
}

.method {
  font-variant: small-caps;
}


.teaser .hero-body {
  padding-top: 0;
  padding-bottom: 3rem;
}

.teaser {
  font-family: 'Google Sans', sans-serif;
}


.publication-title {}

.publication-banner {
  max-height: parent;

}

.publication-banner video {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  object-fit: fit;
}

.publication-header .hero-body {}

.publication-title {
  font-family: 'Google Sans', sans-serif;
}

.publication-authors {
  font-family: 'Google Sans', sans-serif;
}

.publication-venue {
  color: #555;
  width: fit-content;
  font-weight: bold;
}

.publication-awards {
  color: #ff3860;
  width: fit-content;
  font-weight: bolder;
}

.publication-authors {}

.publication-authors a {
  /*color: hsl(204, 86%, 53%) !important;*/
  color: #0dc4e1;
  color: #2f5171;
  color: #e08b4a;
}

.publication-authors a:hover {
  text-decoration: underline;
}

.author-block {
  display: inline-block;
}

.publication-banner img {}

.publication-authors {
  /*color: #4286f4;*/
}

.publication-video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;

  overflow: hidden;
  border-radius: 10px !important;
}

.publication-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.publication-body img {}

.results-carousel {
  overflow: hidden;
}

.results-carousel .item {
  margin: 5px;
  overflow: hidden;
  border: 1px solid #bbb;
  border-radius: 10px;
  padding: 0;
  font-size: 0;
}

.results-carousel video {
  margin: 0;
}


.interpolation-panel {
  background: #f5f5f5;
  border-radius: 10px;
}

.interpolation-panel .interpolation-image {
  width: 100%;
  border-radius: 5px;
}

.interpolation-video-column {}

.interpolation-panel .slider {
  margin: 0 !important;
}

.interpolation-panel .slider {
  margin: 0 !important;
}

#interpolation-image-wrapper {
  width: 100%;
}

#interpolation-image-wrapper img {
  border-radius: 5px;
}

.motivation-image {
  width: 65%;
}

.sudoku-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#sudoku-container {
  display: flex;
  margin-top: 20px;
}

#sudoku-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-gap: 2px;
  background-color: #000;
  border: 3px solid #000000;
}

.sudoku-cell {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}


#image-options {
  display: grid;
  grid-gap: 2px;
  margin-left: 20px;
}

.image-option {
  cursor: pointer;
}

#message {
  text-align: center;
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
}

.sudoku-cell.prefilled {
  background-color: #f0f0f0;
}

.sudoku-cell.prefilled img {
  opacity: 0.9;
}

.sudoku-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.fireworks {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.firework {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: firework 2s ease-out infinite;
}

.firework:nth-child(1) {
  left: 20%;
  animation-delay: 0.0s;
  background: #ff0000;
}

.firework:nth-child(2) {
  left: 50%;
  animation-delay: 0.3s;
  background: #00ff00;
}

.firework:nth-child(3) {
  left: 80%;
  animation-delay: 0.5s;
  background: #0000ff;
}


@keyframes firework {
  0% {
    transform: translate(0, 100vh);
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translate(-50px, -100vh);
    opacity: 0;
  }
}


.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
  text-align: center;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}


#fireworks-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}