body, html {
  font-size: 10px;
  height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  background-color: #959198;
  overflow-x: auto;
  font-family: 'Comfortaa', sans-serif;
  background-image: url(https://wi-fu.neocities.org/assets/backgroundhome4.png);
}


#pagination {
  position: relative;
  width: 1000px;
  height: 1400px;
  margin: 0 auto;
  padding: 3px;
  
}

* {
  box-sizing: border-box;
}

.header {
  font-size: 35px;
  width: 100%;
  height: 200px;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  
}

.header img {
  width: auto;
  margin-bottom: -30px;
}

.header1 {
  width: 50%;
}

.header1 img {
  width: 1000px;
  margin-top: 70px;
}

.header2 {
  width: 50%;
  z-index: 1;
  margin-top: -30px;
}

.headerrow {
  display: flex;
  font-size: 14px;
  border-radius: 30px 30px 0 0;
  height: 50px;
  background-color: white;
  background-image: url(https://wi-fu.neocities.org/assets/diagonale.png);
}

.white {
  width: 58%;
}

.blue {
  width: 42%;
  border-radius: 0 30px 0 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 18% 100%);
  background-image: url(https://wi-fu.neocities.org/assets/blue.png);
  background-size: contain;
}

.grey {
  margin-left: 30px;
  margin-top: 15px;
  clip-path: polygon(0 0, 93% 0, 100% 100%, 0 100%);
  background-color: #e3eaec;
  border: 3px inset #d6e2e7;
  border-radius: 20px 0 0 0;
  height: 30px;
  letter-spacing: 3px;
}

.grey p {
  margin-left: 1px;
  margin-top: 6px;
  font-size: 11px;
}

.row {
  display: flex;
  align-items: flex-start;
  background: white;
  font-size: 14px;
  border-radius: 0 0 30px 30px;
  height: 410px;
  z-index: 2;
  position: relative;
  margin-top: 0;
  background-image: url(https://wi-fu.neocities.org/assets/diagonale.png);
}

.columnleft {
  width: 25%;
  margin-top: 30px;
  padding: 10px;
  height: 660px;
}

.roundy {
  position: absolute;
  height: 30px;
  width: 100px;
  margin-top: 20px;
  margin-left: 1px;
}

  .socials1 {
  position: absolute;
  height: 200px;
  width: 220px;
  margin-top: 38px;
  margin-left: 3px;
  background-color: white;
  background-image: url(https://wi-fu.neocities.org/assets/diagonale.png);
  border-radius: 50px;
  }

.socials2 {
  background-color: #e3eaec;
  border: 3px inset #d6e2e7;
  border-radius: 40px;
  padding: 10px;
  margin: 10px;
  height: 180px;
  width: 200px;
}

.columnmid {
  background-color: white;
  background-image: url(https://wi-fu.neocities.org/assets/diagonale.png);
  width: 75%;
  border-radius: 0 0 30px 30px;
}

.main {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  gap: 10px;
  padding: 10px;
  justify-content: center;
  background-repeat: repeat;
  margin-top: 22px;
  margin-left: 10px;
  margin-right: 10px;
}

.main > .footer {
  margin-top: auto;
}

.footer {
  background-color: white;
  background-image: url(https://wi-fu.neocities.org/assets/diagonale.png);
  width: 100%;
  border-radius: 0 0 30px 30px;
  color: #7d7d7d;
  margin-top: -10px;
  text-align: right;
}

.footer a {
  color: #28adc3;
}

.cornerpic {
  position: absolute;
  top: 900px;
  left: -70px;
}

.navheader {
  width: 190px;
  margin: -2px auto auto -2px;
  font-family: "Orbitron", sans-serif;
  text-decoration: dotted underline 1px grey;
  text-underline-offset: 3px;
}

.navheader h2 {
  margin: 5px auto 5px;
  text-align: left;
  letter-spacing: 5px;
  margin-left: 15px;
  margin-bottom: 15px;
  margin-top: 10px;
}

.nav {
  width: 200px;
  margin: 0 auto;
  background-color: #e3eaec;
  border: 3px inset #d6e2e7;
  border-radius: 20px;
  height: 350px;
}

.navbuttons {
  color: black;
  font-family: "Orbitron", sans-serif;
  padding: 5px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 2px;
  cursor: pointer;
  margin: 3px 10px 2px;
  background-color: #bbc6c9;
  border: 2px inset #a0aeb4;
  border-radius: 10px;
  width: 90%;
}

.navbuttons img {
  width: 35px;
  height: 35px;
}

.navbuttons {
  display: inline-block; /* or 'block' if you want them stacked vertically */
}

.navbuttons:hover {
  background-color: rgb(185, 228, 98);
  border-style: inset;
  color: #000000;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.scroll-left {
  height: 50px;
  overflow: hidden;
  position: relative;
}

.scroll-left p {
  position: absolute;
  font-size: 11px;
  font-family: "Orbitron", sans-serif;
  width: 100%;
  text-align: center;
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -moz-animation: scroll-left 10s linear infinite;
  -webkit-animation: scroll-left 10s linear infinite;
  animation: scroll-left 10s linear infinite;
}

@-moz-keyframes scroll-left {
  0% { -moz-transform: translateX(100%); }
  100% { -moz-transform: translateX(-100%); }
}

@-webkit-keyframes scroll-left {
  0% { -webkit-transform: translateX(100%); }
  100% { -webkit-transform: translateX(-100%);
  }
}

@keyframes scroll-left {
  0% { -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}