/*https://colorhunt.co/palette/f7374f88304e5225462c2c2c*/

/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: thin;
    scrollbar-color: #333333 #2c2c2c;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 3px;
  }

  *::-webkit-scrollbar-track {
    background: #2c2c2c;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #333333;
    border-radius: 3px;
    border: 3px outset #2c2c2c;
  }


body::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

body {
  scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none;   /* IE/Edge */

  cursor: none;
}



body{
    margin: 0;
    overflow-x: hidden;
    background-color: rgb(36, 36, 41);
}

::selection {
    background: #ffffff;
    color: #000000;
}



a {
  text-decoration: none;
}


a {
  color: #ffeb7b;
  background: linear-gradient(0deg, #ffd700, #ffd700) no-repeat right bottom / 0 var(--bg-h);
  transition: background-size 350ms;
  
  
  --bg-h: 100%;
}
a:where(:hover, :focus-visible) {
  color: #000000;
  background-size: 100% var(--bg-h);
  background-position-x: left;
}












.landingpart {
    width: 100vw;
    height: 100vh;
    background-color: #2C2C2C;
}

.landingpart .datetoday{
    color: #333333;
    font-family: 'funnel display';
    font-weight: 800;
    font-size: calc(1vh + 1vw);
    margin-right: 4%;
}

.landingpart .dateDisplayContainer{
    display: flex;
    justify-content: flex-end;
    background: #2C2C2C;
    background: linear-gradient(0deg, rgba(44, 44, 44, 1) 0%, rgba(39, 39, 39, 1) 100%);


}

.donutspinning{
  background-color: white;
  background-color: #2C2C2C;
  position: absolute;

    padding-top: 30vh;
    padding-left: 5vw;
    margin-bottom: 0;
    padding-right: 9%;

  -webkit-user-select: none; /* Safari and Chrome */
  -ms-user-select: none;    /* Internet Explorer and Edge */
  user-select: none;        /* Standard syntax */
}

.donutspinning .donat{
  width: 50vh;
  position: absolute;
  opacity: 30%;

  filter: blur(3px) brightness(200%) contrast(102%);
-webkit-filter: blur(3px) brightness(200%) contrast(102%);
-moz-filter: blur(3px) brightness(200%) contrast(102%);

  -webkit-user-select: none; /* Safari and Chrome */
  -ms-user-select: none;    /* Internet Explorer and Edge */
  user-select: none;        /* Standard syntax */


}


.landingpart .fullname{
    color: #efefef;
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 5vh;
    padding-top: 45vh;
    padding-left: 5%;
    margin-bottom: 0;
    padding-right: 9%;
}

.landingpart .title{
    color: #7e7e7e;
    font-family: 'Montserrat';
    font-weight: 300;
    font-size: 3vh;
    padding-left: 5%;
}








.textcontainer{
  color: #efefef;
  margin-left: 5%;
  margin-right: 30%;
  font-family: 'Montserrat';
  margin-top: 20%;
  padding-bottom: 10vh;
  width: 40%;
}
@media (max-width: 800px) {
  .textcontainer {
    width: 90%;
    margin-right: 5%; 
  }
}




.heading{
font-size: 3vh;
font-weight: 600;
margin-top: 25vh;

opacity: 0;
transform: translateY(50px);
filter: blur(20px);
transition: filter 2s cubic-bezier(0.00,0.93,0.29,0.98), opacity 1s cubic-bezier(0.66,-0.37,0.29,0.98), transform 0.6s cubic-bezier(0.66,-0.37,0.29,0.98);
}
.loco-heading{
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
}
.subhead {
  margin-top: 5vh;
  margin-left: 10%;
  font-size: 2vh;
  font-weight: 400;

  opacity: 0;
  transform: translateY(50px);
  filter: blur(20px);
  transition: 
    filter 2s 0.3s cubic-bezier(0.00,0.93,0.29,0.98), 
    opacity 1s 0.3s cubic-bezier(0.66,-0.37,0.29,0.98), 
    transform 0.6s 0.3s cubic-bezier(0.66,-0.37,0.29,0.98);
}

.loco-subhead {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
}

.desc {
  margin-left: 20%;
  font-size: 2vh;
  font-weight: 300;

  opacity: 0;
  transform: translateY(50px);
  filter: blur(20px);
  transition: 
    filter 2s 0.6s cubic-bezier(0.00,0.93,0.29,0.98), 
    opacity 1s 0.6s cubic-bezier(0.66,-0.37,0.29,0.98), 
    transform 0.6s 0.6s cubic-bezier(0.66,-0.37,0.29,0.98);
}

.loco-desc {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
}


.spacer{
  height: 10%;
  margin-top: 4vh;
  margin-bottom: 4vh;
  width: 40%;
}





@keyframes pulse {
  0% { transform: translateX(-50%) scale(1); opacity: 1; }
  50% { transform: translateX(-50%) scale(1.1); opacity: 1; }
  100% { transform: translateX(-50%) scale(1); opacity: 0.5; }
}

.scrolldownReminder {
  position: fixed;
  bottom: 2vw;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 999;
  font-size: min(20px, 2vw);
  pointer-events: none;
  color: #ffd900;
  font-family: 'Montserrat', sans-serif;
}
@media (max-width: 800px) {
  .scrolldownReminder{
    font-size: 4vw;
  }
}

.scrolldownReminder.visible {
  opacity: 1;
  animation: pulse 1.5s infinite;
}















.end{
  background: #522546;
background: -webkit-linear-gradient(0deg, rgba(82, 37, 70, 1) 0%, rgba(36, 36, 41, 1) 100%);
background: -moz-linear-gradient(0deg, rgba(82, 37, 70, 1) 0%, rgba(36, 36, 41, 1) 100%);
background: linear-gradient(0deg, rgba(82, 37, 70, 1) 0%, rgba(36, 36, 41, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#522546", endColorstr="#242429", GradientType=0);


  
  height: 6vh;
}




.hpmail {
  display: none;
  visibility: hidden;
  pointer-events: none;
  height: 0;
  width: 0;
  overflow: hidden;
}


.cursor {
      width: 1vw;
      height: 1vw;
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      mix-blend-mode: exclusion;
      background: white;
      transform: translate(-50%, -50%);
      transition: transform 0.05s ease-out;
      z-index: 99999;
    }
@media (max-width: 800px) {
  .cursor{
    width: 10px;
    height: 10px;
  }
}


a, button, input, textarea {
  cursor: none !important;
}


.noise {z-index:100; position:absolute; top:0; left:0; width:100%; height:100%; pointer-events:none; opacity:.1;}



.hoverappearimage{
  width: 65vw;
  height: 37vw;
  background-color: white;
  position: absolute;
  z-index: 11000;
  border-radius: 30px;
  opacity: 0;
  pointer-events: none;
  filter: blur(100px);
  transform: scale(0) translateX(10vw);
  display: flex;
  align-items: center;

  backdrop-filter: blur(8px) saturate(200%);
    -webkit-backdrop-filter: blur(8px) saturate(20%);
    background-color: rgba(17, 25, 40, 0.32);
    border: 1px solid rgba(0, 0, 0, 0.125);

  transition: opacity 0.3s ease, filter 0.5s ease, transform 1s cubic-bezier(.34,.02,.09,.98);
}
.isHovered{
  opacity: 1;
  filter: blur(0);
  transform: scale(1) translateX(0);
}

.blurAll{
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 10000;
  pointer-events: none;
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.7s ease;
}
.blurAllHovered{
  opacity: 1;
}



.imageToAppear{
  width: 90%;
  height: 90%;
  object-fit: cover;
  border-radius: 10px;
  margin: auto;
  box-shadow: 10px -5px 10px -9px rgba(0,0,0,0.31);
-webkit-box-shadow: 10px -5px 10px -9px rgba(0,0,0,0.31);
-moz-box-shadow: 10px -5px 10px -9px rgba(0,0,0,0.31);
}





.loader {
  width: 48px;
  height: 48px;
  border: 5px solid;
  border-color: #ffd700 transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 


.preloaderContainer{
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1%;
  height: 1%;
}

.preloader{
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1%;
  height: 1%;
}

