* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    background: #0000FF;
    font-family: 'Jost', sans-serif;
    overflow: hidden;
    height: 100vh;
    user-select: none
}

.scroll-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: grab
}

.scroll-container.dragging {
    cursor: grabbing
}

.image-strip {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    will-change: transform
}

.image-container {
    width: 400px;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgb(0 0 0 / .4);
    position: relative;
    left: 0;
    will-change: transform
}

.image-container:hover {
    transform: scale(1.02)
}

.image-container img {
    width: 100%;
    height: auto;
    display: block
}

.info {
    font-weight: 600;
    position: fixed;
    left: 12px;
    bottom: 12px;
    z-index: 10;
    background: #fb0434;
    padding: 8px;
    border-radius: 8px;
    color: #fff;
    background: #fb0434;
    padding: 12px 24px;
    border-radius: 20px;
    font-size: 0.8em;
    z-index: 10;
    text-align: center;
    opacity: 1
}

#loading {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20
}

a {
    color: rgb(247, 250, 252);
    text-decoration: none
}

a:hover {
    color: #fff
}

.copy {
    font-weight: 700;
    position: fixed;
    top: 20px;
    left: 20px;
    color: #ffffff;
    background: #fb0434;
    padding: 10px;
    border-radius: 5px;
    font-size: 1rem;
    z-index: 2
}

.controls-info {
    position: fixed;
    top: 20px;
    right: 20px;
    color: #fff;
    background: #fb0434;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 12px;
    z-index: 10;
    text-align: center;
    cursor: pointer
}

#loadingScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fb0434;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: opacity 0.8s ease;
    color: #fff;
    font-family: Arial, sans-serif
}

#loadingScreen.hidden {
    opacity: 0;
    pointer-events: none
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 17, 17, 0.1);
    border-top-color: rgb(255, 255, 255);
    border-radius: 50%;
    animation: spin 0.8s linear infinite
}

#loadingText {
    margin-top: 20px;
    font-size: 14px;
    letter-spacing: 2px;
    color: rgb(255 255 255 / .6)
}

#loadingProgress {
    margin-top: 8px;
    font-size: 12px;
    color: rgb(255 255 255 / .4)
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}




/* ========================================================
Something
===================================================== */


.cursor {
  position: absolute;
  display: inline-flex;
  align-items: center;
  pointer-events: none;
  z-index: 99;
  transform: translate(50vw, 50vh) translate(-50%, -50%);
}
.cursor .cursor-inner {
  display: flex;
  display: inline-flex;
  align-items: center;
  transition: 600ms all cubic-bezier(0.23, 1, 0.32, 1);
  transform: rotate(0deg);
}
.cursor.grab .cursor-inner {
  transform: rotate(180deg);
}
.cursor.grab .cursor-centre {
  background-color: #fff;
  transform: scale(0.3);
}
.cursor.grab .cursor-arrow.arrow-left .arrow-inner {
  transform: scale(2) rotate(-135deg) translateX(5px) translateY(-5px);
}
.cursor.grab .cursor-arrow .arrow-inner {
  transform: scale(2) rotate(45deg) translateX(5px) translateY(-5px);
}
.cursor .cursor-centre {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid #fff;
  transition: 600ms all cubic-bezier(0.23, 1, 0.32, 1);
}
.cursor .cursor-arrow {
  width: 10px;
  height: 10px;
  margin: 0 3px;
}
.cursor .cursor-arrow.arrow-left .arrow-inner {
  transform: rotate(-135deg);
}
.cursor .cursor-arrow .arrow-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  transition: 600ms all cubic-bezier(0.23, 1, 0.32, 1);
}
