@import url('https://fonts.googleapis.com/css2?family=Vidaloka&display=swap');


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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  /* font-family: GT Super Display,Georgia,Cambria,Times New Roman,Times,serif!important; */
  font-family: 'Vidaloka', serif;
  background: #000;
  color: #fff;
  position: relative;
}

.mobile {
  display: none;
  width: 100%;
  height: 100%;
  background-color: #000;
  color: #fff;
  justify-content: center;
  align-items: center;
}

main {
  /* display: flex;
  justify-content: center;
  align-items: center; */
  background: #000;
  width: 125%;
  height: 125%;
  position: relative;
  top: -12.5%;
  left: -12.5%;
  transition: all 2s ease-out;
}

p {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 72px;
  text-shadow: #fff 0px 0px 15px;
  z-index: 4;
  opacity: 0.6;
  transition: opacity 0.2s ease-out;
  user-select: none;
}

p:hover {
  opacity: 1 !important;
}

p span {
  color: #e50813;
  text-shadow: #e50813 0px 0px 10px;
}

.floater {
  position: absolute;
  width: 384px;
  aspect-ratio: 1920 / 1080;
  background: #000;
  z-index: 5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 2s ease-out;
}

.floater img {
  width: 100%;
  transition: all 0.3s ease;
}

.floater img:hover {
  cursor: pointer;
  box-shadow: 0px 0px 100px rgba(255, 255, 255, 0.3);
}


.bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 1;
  transition: 0.1s ease-out;
}

#modal {
  display: none;
  position: fixed; /* Stay in place */
  z-index: 10; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

#modal-div {
  width: 65%;
  aspect-ratio: 1920 / 1080;
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
  background: #000;
  z-index: 11;
  transition: all 1s ease-out;
}

#modal-div img {
  box-shadow: none !important;
  cursor: default !important;
}