/* Smooth scrolling when you click on the button*/
html {
  scroll-behavior: smooth;
}

/* Hide scrollbar but keep functionailty */
.container {
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox, Safari 18.2+, Chromium 121+ */
}
.container::-webkit-scrollbar { 
    display: none;  /* Older Safari and Chromium */
}
::-webkit-scrollbar {
    display: none;
}

/* Main body stuff idkfgjze */

html, body {
  background: hsla(0,0%,5%,1);
}

body {
  margin: 0;
  color: #fff;
  background-color: #000;
  padding: 0;
  overflow-x: hidden;
}

/* Make the button able to have cool fonts :sunglass: */

button {
  font-family: inherit;
  font-size: 30%;
}

/* styling for each pages */

.page {
  font-size: 50px;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  color: white;
  flex-grow: 1; /* Allow main content to take remaining space */

  width: 100%;
  height: 100vh; /* Each page takes full viewport height */
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 10; /* Above the gradient effects */
}

/* mage backgroudn good */

.FirstPage {
  margin-left: 100px;
  line-height: 5px;
}

.FancyName {
  color: rgb(255, 255, 255);
  font-weight: bold;
  text-shadow: 3px 3px 1px #fe004f, -3px -3px 1px #00f1e9;
}

.BackgroundPage1 {
  position: absolute;
  z-index: -1;
  width: 100%;
}


/* Button styling (scroll down thingy) */

.ScrollDown {

  margin-top: 130px;

  background-color: rgba(255, 255, 255, 0);
  color: aquamarine;
  border-color: aquamarine;
  border-radius: 4px;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  width: 15%;
  height: 6%;
}

/* Ohhh nice animation */

.ScrollDown:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: rgb(114, 255, 208);
  border-color: rgb(169, 255, 226);
}