:root {
  --main-color: #800000;
  --second-color: #ff3366;
  --text-color: #cdcdcd;
  --second-text-color: #111111;
}

::-webkit-scrollbar-track {
  background: var(--main-color);
}

::-webkit-scrollbar-thumb {
  background: var(--text-color);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--colourful);
}

::-moz-selection {
  color: var(--main-color);
  background: var(--text-color);
}

::selection {
  color: var(--main-color);
  background: var(--text-color);
}

.hearts {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
}
.hearts .heart {
  position: absolute;
  animation: float 6s infinite;
  opacity: 1;
  font-size: 24px;
}

#counter-page {
  justify-content: center;
  align-items: center;
  overflow: hidden;
  min-height: 100dvh;
  color: var(--text-color);
}
#counter-page #music-button {
  position: absolute;
  top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  background: var(--text-color);
  color: var(--main-color);
  border-radius: 0.6rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 1.5rem;
  padding: 10px 30px;
}
#counter-page .countdown-container {
  text-align: center;
  position: relative;
  z-index: 1;
}
#counter-page .countdown-container .countdown {
  padding: 20px;
  display: flex;
  gap: 25px;
  margin-top: 20px;
}
#counter-page .countdown-container .countdown .time-block {
  background: rgba(255, 255, 255, 0.15);
  padding: 30px 50px;
  border-radius: 15px;
  min-width: 140px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: pulse 2s infinite;
}
#counter-page .countdown-container .countdown .time-block .number {
  font-size: 5rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
#counter-page .countdown-container .countdown .time-block .label {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.9;
}
#counter-page #word-container {
  font-size: 4rem;
  text-align: center;
  font-weight: bold;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: absolute;
  bottom: 20px;
  display: flex;
  align-items: center;
  font-weight: lighter;
  justify-content: center;
  font-family: Waterfall;
  z-index: 1;
}

#home-screen {
  display: none;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes float {
  0% {
    transform: translateY(-100dvh);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(100dvh);
    opacity: 0;
  }
}
@media (max-width: 990px) {
  #counter-page .countdown-container .countdown {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  #counter-page .countdown-container .countdown {
    gap: 4vw;
  }
  #counter-page .countdown-container .countdown .time-block {
    padding: 8vw;
    min-width: auto;
  }
  #counter-page .countdown-container .countdown .time-block .number {
    font-size: 16vw;
  }
  #counter-page .countdown-container .countdown .time-block .label {
    font-size: 4vw;
  }
  #counter-page .heart {
    font-size: 1.1rem;
  }
  #counter-page #music-button {
    font-size: 1rem;
    padding: 10px 30px;
  }
}
@media (max-width: 470px) {
  #counter-page #word-container {
    font-size: 2.5rem !important;
    bottom: 10px !important;
  }
}
@font-face {
  font-family: Waterfall;
  src: url("../fonts/Waterfall.ttf");
}
@font-face {
  font-family: "Quagera";
  src: url("../fonts/Quagera-Regular.woff2") format("woff2"), url("../fonts/Quagera-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NewYork";
  src: url("../fonts/newyork.otf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--main-color);
  cursor: url(../images/whitecursor.webp), auto !important;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.3s;
  overflow-x: hidden;
}

body.dark {
  --main-color: #111111;
  --second-color: #af1c1c;
  --text-color: #dadada;
  --second-text-color: #af1c1c;
  background: var(--main-color);
}

#home-page {
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
#home-page #title {
  background: url(../images/bg.jpg) 50% 50%;
  background-size: cover;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
  font-size: 10vw;
  font-family: "Quagera", sans-serif;
  text-align: center;
}
#home-page .music-container {
  position: absolute;
  left: 0px;
  padding: 10px;
  z-index: 88;
  bottom: 10px;
}
#home-page .music-container .music-bar {
  position: relative;
  display: flex;
  align-items: center;
  font-family: "roboto", sans-serif;
  color: var(--text-color);
  font-size: 18px;
  font-weight: 200;
  cursor: pointer;
}
#home-page .music-container .music-bar:hover {
  color: var(--second-text-color);
}
#home-page .music-container .music-bar .music-button {
  font-size: 36px;
  padding-right: 10px;
}
#home-page .music-container .music-bar P {
  font-family: "NewYork";
  position: relative;
  top: 2px;
}
#home-page .down-button-container {
  position: absolute;
  bottom: 20px;
  left: calc(50% - 25px);
  cursor: pointer;
}
#home-page .down-button-container .profile-down-button {
  position: relative;
  width: 50px;
  height: 50px;
  justify-content: center;
  display: flex;
  align-items: center;
  animation: downbutton linear 0.8s infinite alternate;
  cursor: pointer;
}
#home-page .down-button-container .profile-down-button:hover .down-button-l, #home-page .down-button-container .profile-down-button:hover .down-button-r {
  background: var(--second-text-color);
}
@keyframes downbutton {
  0% {
    top: -15px;
  }
  100% {
    top: 15px;
  }
}
#home-page .down-button-container .profile-down-button .down-button-l {
  height: 1px;
  width: 30px;
  left: 4px;
  position: relative;
  background: var(--text-color);
  transform: rotate(50deg);
}
#home-page .down-button-container .profile-down-button .down-button-r {
  height: 1px;
  width: 30px;
  left: -5px;
  position: relative;
  background: var(--text-color);
  transform: rotate(-50deg);
}

.heart-container {
  position: absolute;
  right: 0px;
  cursor: pointer;
  padding: 10px;
  z-index: 88;
  bottom: 10px;
  color: var(--text-color);
}
.heart-container:hover {
  color: var(--second-text-color);
}
.heart-container span {
  font-size: 36px;
}

#gallery-page {
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
#gallery-page .gallery-container .image-gallery {
  max-width: 1330px;
  -moz-columns: 4;
       columns: 4;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
#gallery-page .gallery-container .image-gallery > li {
  list-style: none;
  position: relative;
  margin-bottom: 10px;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  filter: grayscale(100%);
  transition: 0.3s;
  box-shadow: -5px 8px 6px 1px rgba(0, 0, 0, 0.55);
}
#gallery-page .gallery-container .image-gallery > li:hover {
  filter: grayscale(0%);
}
#gallery-page .gallery-container .image-gallery > li .reverse {
  transform: rotate(180deg);
}
#gallery-page .gallery-container .image-gallery li img {
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}
#gallery-page .gallery-container video::-webkit-media-controls {
  display: none !important;
}
#gallery-page .gallery-container video::-webkit-media-controls-enclosure {
  display: none !important;
}
#gallery-page .gallery-container video::-webkit-media-slider {
  display: none !important;
}
#gallery-page .gallery-container .image-gallery li video {
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}

#socialmedias-page {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  min-height: 100dvh;
  gap: 50px;
  padding: 50px 10px;
}
#socialmedias-page .for-us {
  font-family: "NewYork";
  color: var(--text-color);
  font-size: 40px;
  position: relative;
}
#socialmedias-page .container .embed {
  margin: auto;
  box-shadow: -5px 8px 6px 1px rgba(0, 0, 0, 0.55);
}
#socialmedias-page .container .embed .instagram-media {
  position: relative;
  margin: auto;
  min-width: 400px;
  filter: grayscale(100%);
  transition: 0.3s;
}
#socialmedias-page .container .embed .instagram-media:hover {
  filter: grayscale(0%);
}

#copyright-page {
  height: 50px;
  width: 100%;
  position: relative;
  border-top: 1px solid var(--text-color);
  display: flex;
  align-items: center;
  justify-items: center;
}
#copyright-page h4 {
  margin: auto;
  font-family: "Rajdhani", sans-serif;
  font-weight: 100;
  color: var(--text-color);
}

#fullpage {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.9);
}
#fullpage #fullpage_img_container {
  justify-content: center;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100dvh;
}
#fullpage #fullpage_img_container #fullpage_img {
  height: 90vh;
  width: 80%;
  background-size: contain;
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  display: none;
}
#fullpage #fullpage_img_container video {
  height: 90vh;
  width: 80vw;
  display: none;
}

.loader-container {
  height: 100dvh;
  width: 100%;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 5555;
  background: var(--main-color);
  justify-content: center;
  display: flex;
  align-items: center;
}
.loader-container .loader {
  width: 20px;
  height: 2px;
  background: var(--text-color);
  animation: loader ease-in-out 1s infinite;
  position: relative;
}
@keyframes loader {
  0% {
    left: -60%;
  }
  25% {
    left: -30%;
    width: 25%;
  }
  50% {
    left: 0;
    width: 50%;
  }
  75% {
    left: 60%;
    width: 25%;
  }
  100% {
    left: 120%;
    width: 20px;
  }
}

@font-face {
  font-family: "Quagera";
  src: url("../fonts/Quagera-Regular.woff2") format("woff2"), url("../fonts/Quagera-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NewYork";
  src: url("../fonts/newyork.otf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@media only screen and (max-width: 1000px) {
  .music-bar .music-button {
    padding-right: 0 !important;
  }
  .music-bar p {
    display: none;
  }
  .gallery-container .image-gallery {
    -moz-columns: 3 !important;
         columns: 3 !important;
  }
}
@media only screen and (max-width: 700px) {
  .gallery-container .image-gallery {
    -moz-columns: 2 !important;
         columns: 2 !important;
  }
}
@media only screen and (max-width: 670px) {
  .container p {
    font-size: 30px !important;
  }
}
@media only screen and (max-width: 426px) {
  #fullpage_img {
    width: 95% !important;
  }
  #socialmedias-page .instagram-media {
    width: 98vw !important;
    min-width: auto !important;
  }
  .container p {
    font-size: 25px !important;
  }
}
@media only screen and (max-width: 340px) {
  #title {
    font-size: 8vw !important;
  }
  #socialmedias-page h1 {
    font-size: 50px !important;
  }
  .container p {
    font-size: 20px !important;
  }
}/*# sourceMappingURL=style.css.map */