@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');
@import url('https://db.onlinewebfonts.com/c/23ab8b9b588d250d12590e755a4d00da?family=NexaBold');
@font-face {
  font-family: "Proxima Nova A";
  src: url("https://db.onlinewebfonts.com/t/cef009888ec0e6c3fdbb27db91a57b8f.eot");
  src: url("https://db.onlinewebfonts.com/t/cef009888ec0e6c3fdbb27db91a57b8f.eot?#iefix")format("embedded-opentype"),
  url("https://db.onlinewebfonts.com/t/cef009888ec0e6c3fdbb27db91a57b8f.woff2")format("woff2"),
  url("https://db.onlinewebfonts.com/t/cef009888ec0e6c3fdbb27db91a57b8f.woff")format("woff"),
  url("https://db.onlinewebfonts.com/t/cef009888ec0e6c3fdbb27db91a57b8f.ttf")format("truetype"),
  url("https://db.onlinewebfonts.com/t/cef009888ec0e6c3fdbb27db91a57b8f.svg#Proxima Nova A")format("svg");
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.container {
  width: 100vw;
  height: 7vw;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: rgba(57, 57, 57, 0.2);
}

.header {
  position: relative;
  font-size: 4vw;
  z-index: 10;
  color: rgb(255, 255, 255);
  text-decoration: none;
  outline: none;
}

@keyframes slotMachineS {
  0% {
    transform: translate(100%, -100%);
    opacity: 0;
  }
  10% {
    transform: translate(100%, 0);
    opacity: 1;
  }
  88% {
    transform: translate(100%, 0);
    opacity: 1;
  }
  93% {
    opacity: 0;
  } 
  100% {
    transform: translate(100%, 100%);
    opacity: 0;
  }
}

@keyframes slotMachineP {
  0% {
    transform: translate(-100%, -100%);
    opacity: 0;    
  }
  10% {
    transform: translate(-100%, 0);
    opacity: 1;
  }
  88% {
    transform: translate(-100%, 0);
    opacity: 1;
  }
  93% {
    opacity: 0;
  }  
  100% {
    transform: translate(-100%, 100%);
    opacity: 0;
  }
}
a {
  text-decoration: none;
  color: inherit;
}

.decoration {
  text-decoration: underline;
  color:rgb(183, 235, 255);
}


/* preloading */
#loader {
  display: block;
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 2001;
}

#loader .silly {
  width: 60%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 1s ease-in-out, width 1s ease-in-out;
  display: block;
  margin: 0 auto;
}

#loader.small .silly {
  width: 100%;
  height: 0px;
  object-position: center -650px;
  transition: all 1s ease-in-out;
}

#loader:before,
#loader:after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: #000000;
  z-index: 2;
  transition: width 1s ease-in-out;
}

#loader:before {
  left: 0;
}

#loader:after {
  right: 0;
}

#loader:before,
#loader:after {
  width: 0;
}


.me {
  background-color: rgba(57, 57, 57, 0.2); 
  border: 1px solid rgba(62, 62, 62, 0.3); 
  backdrop-filter: blur(5px);
  border-radius: 12px;
  color:rgb(255, 255, 255);
}

.social {
  background-color: rgba(57, 57, 57, 0.2); 
  border: 1px solid rgba(62, 62, 62, 0.3); 
  backdrop-filter: blur(5px);
  border-radius: 12px;
  color:rgb(255, 255, 255);
  margin-top: 20px;
  flex: 1;
  max-width: 27vw;
  padding: 20px;
  color: #fff; 
  max-width: max-content;
  height: fit-content;
  margin-bottom: 30px;
}

.guhhh {
  background-color: rgba(57, 57, 57, 0.2);
  border: 1px solid rgba(62, 62, 62, 0.3);
  backdrop-filter: blur(5px);
  border-radius: 12px;
  color: rgb(255, 255, 255);
  margin-top: 20px;
  margin-left: 1vw;
  max-width: 100%;
  padding: 20px;
  color: #fff;
  flex-grow: 1;
  height: 550px;
}


.marg {
  margin-top: 0.5vw;
  margin-left: 12vw;
  margin-right: 12vw;
  padding: 10px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
}

.pfp {
  border-radius: 15px;
  height: 300px;
}

body {
  scrollbar-width: thin;
  scrollbar-color: #4a4a4a #1f1f1f;
  background: linear-gradient(135deg, #d8f6f8, #dc93ec, #b68ff5, #c05bf7, #78e4ff, #78e4ff);
  background-size: 300% 300%; 
  animation: ok no 25s infinite ease-in-out;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 40%;
  }
  25% {
    background-position: 100% 50%;
    background-color: #d8f6f8; 
  }
  50% {
    background-position: 0% 50%;
    background-color: #dc93ec;
  }
  75% {
    background-position: 100% 50%;
    background-color: rgb(164, 108, 255);
  }
  100% {
    background-position: 0% 40%;
    background-color: #5bf2f7;
  }
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: #4a4a4a;
}

::-webkit-scrollbar-track {
  background-color: #1f1f1f;
}


.prefix {
  position: absolute;
  left: 0;
  z-index: -1;
  color: rgb(255, 255, 255);
  text-decoration: none;
  outline: none;
  animation: slotMachineP 4s infinite;
  
}

.suffix {
  position: absolute;
  right: 0;
  z-index: -1;
  color: #ffffff;
  text-decoration: none;
  outline: none;
  animation: slotMachineS 4s infinite;
}

.prefix img {
  position: absolute;
  z-index: 100; 
  height: 4vw;
  display: inline-block;
  vertical-align: middle;
  top: 50%;
  transform: translate(-120%, -50%);
  left: 0;
  rotate: 360deg;
}

.suffix img {
  position: relative;
  z-index: 100; 
  height: 4vw;
  display: inline-block;
  vertical-align: middle;
  transform: translateX(20%);
}

.button {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(45deg, #52c84e, #8fc1fb);
  border: none;
  color: #ffffff;
  font-size: 24px;
  padding: 10px 20px;
  cursor: pointer;
  transition: transform 0.3s, backdrop-filter 0.3s;
  border-radius: 12px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden; 
  margin-top: 1vw;
}

.button::before { 
  position: absolute;
  font-size: 25px; 
  padding-right: 10px;
  transition: content 0.3s; 
}

.button:hover::before { 
  content: "Hovered!"; 
}

.button:hover { 
  transform: scale(1.08);
}


.container2 {
  display: flex;
}

.no-scroll {
  overflow: hidden;
}

.title {
  font-size: 30px;
  font-family: NexaBold, sans-serif;
  display: inline-block;
  font-weight: bold;
  position: relative;
  color: #ffffff;
}

.title::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 50%;
  height: 4px;
  background-color: #6875ff;
}

.hover-button {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(45deg, #52c84e, #8fc1fb);
  border: none;
  color: #ffffff;
  font-size: 24px;
  padding: 10px 20px;
  cursor: pointer;
  transition: color 0.3s, background 0.3s;
  cursor: pointer;
  border-radius: 12px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden; 
  margin-top: 1vw;
}

.hover-button:hover {
  color: rgb(255, 54, 54);
  background: linear-gradient(45deg, #c8be4e, #fb988f);
  
}

.hover-button::before {
  content: "✉"; 
  position: absolute;
  right: 10px; 
  font-size: 25px; 
  padding-right: 30px;
  transition: content 0.3s;
}
.sgu {
  border-radius: 10px;
  height: 500px;
  margin-top: 1vw;
  margin-bottom: 1vw;
}

.time {
  margin-top: 3vw;
  font-size: 20px;
  text-align: center; 
  color: #fff; 
  line-height: 30px;
}
.guhuhguhg {
  font-size: 1.25vw;

}
.icon {
  height: 20px;
  margin-right: 5px;
}
.thatsit {
  border-radius: 10px;
  height: 300px;
  margin-top: 3vw;
  margin-bottom: 1vw;
}


@media only screen and (max-width: 767px) {
  body {
    font-size: 16px; 
  }

  .container {
    height: 15vw; 
  }

  .header {
    font-size: 3vw;
  }

  .marg {
    font-size: 18px; 
  }

  .pfp {
    height: 200px; 
  }

  .sgu {
    height: 300px;
  }

  .guhuhguhg {
    font-size: 7px;
  }

  .marg {
    margin-top: 0.5vw;
    margin-left: 2vw;
    margin-right: 2vw;
    padding: 10px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
  }

  .container2 {
    display: block;
  }

  .container {
    font-size: 10px;
  }

  .icon {
    height: 15px;
    margin-right: 5px;
  }
  
  .thatsit {
    border-radius: 10px;
    height: 200px;
    margin-top: 3vw;
    margin-bottom: 1vw;
  }

  .social {
    max-width: max-content;
    height: fit-content;
  }

  .header {
    font-size: 6vw;
  }

  .prefix img, .suffix img {
    height: 6vw;
  }
  .hover-button {
    margin-top: 15px;
    font-size: 15px; 
  }

  .hover-button::before {
    content: "✉"; 
    position: absolute;
    right: 10px; 
    font-size: 25px; 
    padding-right: 20px;
    transition: content 0.3s;
    top: 360px;
  }
  body {
    overflow-x: hidden;
  }
}