@font-face {
  font-family: Arijan;
  src: url(font/GraffTales-Regular.ttf);
}

* {box-sizing: border-box;}

.img-comp-container {
  position: relative;
  height: 200px; /*should be the same height as the images*/
  width: 300px;
  margin-left: 35px;
}

.img-comp-img {
  position: absolute;
  width: auto;
  height: auto;
  overflow: hidden;
}

.img-comp-img img {
  vertical-align: middle;
}

.img-comp-slider {
  position: absolute;
  z-index: 9;
  cursor: ew-resize;
  /*set the appearance of the slider:*/
  width: 40px;
  height: 40px;
  background-color: #2196F3;
  opacity: 0.7;
  border-radius: 50%;
}

.slike{
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

h1, h2{
  font-family: Arijan;
}

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

  font-size: 50pt;
}

h2{
  font-size: 30pt;
}

p{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16pt;
}

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #f0f0f0; /* matches the CD vibe */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

#loading-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

#loading-screen img {
  width: 120px;
  height: auto;
}

