
@font-face {
  font-family: "Minecraft Regular";
  src: url("fonts/1_Minecraft-Regular.eot"); /* EOT file */
  src: url("fonts/1_Minecraft-Regular.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
       url("fonts/1_Minecraft-Regular.woff") format("woff"), /* Modern browsers */
       url("fonts/1_Minecraft-Regular.ttf") format("truetype"), /* Safari, Android, iOS */
       url("fonts/1_Minecraft-Regular.svg#Minecraft-Regular") format("svg"); /* Legacy iOS */
  font-weight: normal;
  font-style: normal;
}

* {
  padding:0;
    box-sizing: border-box;

}


body {
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: auto;

  background-image: url("moondustback.png");
  background-size: cover;        /* ⬅ fills the screen */
  background-position: center;   /* ⬅ keeps it centered */
  background-repeat: no-repeat;  /* ⬅ no tiling */
  background-attachment: fixed;  /* optional: parallax-like effect */

  margin: 0;
  padding: 0;
  font-family: "Minecraft Regular", Helvetica, sans-serif;
  color: #d0c5e6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
ul {
        list-style-type: none;
}
.discord{
	position: absolute;
	bottom: 5vh;
	right: 0px;;

}

.topbar ul {
    list-style-type: none;
    color: #d0c5e6;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #27104E;
    display: flex;
    align-items: center; /* Center align items vertically */
    width: 100%;
    box-sizing: border-box;
}

.topbar li {
    margin-right: 0.3%;
}

.menu-icon {
    font-size: 45px;
    padding-left:0.3%;
    color: #9D72ED;
    
}

li img {
    padding: 0;
    width: 52px;
    margin: 0;
    height: auto;
}

li img:hover{
  animation: tada;
  animation-duration: .5s;
}

.topbar {
    left: 0;
    right: 0;
    top: 0;
    position: fixed;
    display: flex;
    width: 100%;
    box-sizing: border-box;
    z-index: 1000;
}

.bubbles {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 10px 0;
    z-index: 100;
}

.bubbles img {
    width: 50px;
    animation: bubble 5s linear infinite;
}

@keyframes bubble {
    0% {
        transform: translateY(-80vh);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 0;
    }
}

.bubbles img:nth-child(1) {
    width:35px;
    animation-delay: 0s;
}

.bubbles img:nth-child(2) {
    width: 51px;
    animation-delay: 6s;
}

.bubbles img:nth-child(3) {
    width: 41px;
    animation-delay: 1s;
}

.bubbles img:nth-child(4) {
    width: 31px;
    animation-delay: 5s;
}

.bubbles img:nth-child(5) {
    width: 21px;
    animation-delay: 3s;
}

.bubbles img:nth-child(6) {
    width: 50px;
    animation-delay: 8s;
}

.bubbles img:nth-child(7) {
    width: 25px;
    animation-delay: 0.7s;
}
/* No img drag & No highlight */
img {
  -ms-user-select:none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
}

/* Prevent text highlighting for all elements */
body {
  -ms-user-select:none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
    user-select: none;
}

/* Allow text highlighting for links/hrefs */
a {
  -ms-user-select:auto;
    -webkit-user-select: auto;
    -khtml-user-select: auto;
    -moz-user-select: text;
    -o-user-select: text;
    user-select: text;
}

.sidenav {
  opacity: 0.8;
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
    background-color: #27104e;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
      color: #d0c5e6;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #7c5ca1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.dropbtn {
    padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
      color: #d0c5e6;
  display: block;
  transition: 0.3s;
  background-color: #27104e;
  border: none;
 font-family: "Minecraft Regular", Helvetica, sans-serif;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  min-width: 160px;
  z-index: 1;
}

.dropdown-content a {
  background-color: #d0c5e6;
  color: #27104e;
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  display: block;
}
.dropdown-content a:hover {background-color: #ddd;}

.dropdown:hover .dropdown-content {display: block; cursor: pointer;}
.dropdown:hover .dropbtn {color: #7c5ca1; cursor: pointer;}

#main {
    flex: 1;
 overflow-x: hidden; /* Prevent horizontal scrolling */
    overflow-y: auto;   /* Allow vertical scrolling */
  transition: margin-left .5s;
  padding: 16px;
  margin-bottom:2%;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

.survivalmap {
   background-color: #27104e;
    text-align: center;
    background-image:url(backgroundsurvival.png);
margin-top:1.7%;
  padding:100px 10px;
   background-repeat: no-repeat;
   background-size:cover;
   border:solid #27104e 3px;
     transition: 0.5s;
}

.skyblockmap{
   background-color: #27104e;
    text-align: center;
border:solid #27104e 3px;
margin-top:1.7%;
  padding:100px 10px;
  background-image:url(backgroundskyblock.png);
 background-repeat: no-repeat;
    background-size:cover;
      transition: 0.5s;
}

.creativemap{

    text-align: center;
    background-image:url(backgroundcreative.png);
 background-repeat: no-repeat;
    background-size:cover;
margin-top:1.7%;
  padding:100px 10px;
  background-color: white;
  border:solid #27104e 3px;
    transition: 0.5s;
}

.tinymap {
     background-color: #27104e;
    text-align: center;
border:solid #27104e 3px;
margin-top:1.7%;
  padding:100px 10px;
  background-image:url(backgroundtiny.png);
 background-repeat: no-repeat;
    background-size:cover;
      transition: 0.5s;
  }
.tinymap2 {
     background-color: #27104e;
    text-align: center;
border:solid #27104e 3px;
margin-top:1.7%;
  padding:100px 10px;
  background-image:url(backgroundtiny2.png);
 background-repeat: no-repeat;
    background-size:cover;
      transition: 0.5s;
  }
  .tinymap3 {
     background-color: #27104e;
    text-align: center;
border:solid #27104e 3px;
margin-top:1.7%;
  padding:100px 10px;
  background-image:url(tinys4.png);
 background-repeat: no-repeat;
    background-size:auto;
      transition: 0.5s;
  }

.survivalmap:hover, .creativemap:hover, .skyblockmap:hover, .tinymap:hover, .tinymap2:hover, .tinymap3:hover {
  color: #7c5ca1; /* Change text color on hover */
  transition: 0.5s;
}
.staffers {
  transform: translate(-19%, 1.5%); /* Shift the layout slightly to the left */
  display: flex;
  flex-direction: row; /* Arrange columns side by side */
  justify-content: flex-start; /* Align columns to the left */
  gap: 10px; /* Add space between the two columns */
  width: 80%; /* Ensure the container takes up the full width */
  box-sizing: border-box;
  margin-left: 4.5%;
  
}

.column {
    flex-wrap: wrap; /* Ensures child elements wrap within the container */
  display: flex;
  flex-direction: column; /* Stack staff members vertically */
  gap: 0px; /* Space between staff members */
  width: 50%; /* Make each column take up 50% of the width */
  box-sizing: border-box;
  align-items: center; /* Center each staffer in the column */
}

.right-column-wrapper {
  margin-left: 32%; /* Move the right column further to the right */
}

.staffer {
    word-wrap: break-word; /* For older browsers */
  overflow-wrap: break-word; /* For newer browsers */
  flex: 1 1 auto;
  text-align: center;
  box-sizing: border-box;
  max-width: 200px;
}

.staffer h1, .staffer h2 {
  margin: 0;
  white-space: nowrap; /* Keep text on one line */
  z-index: 1;
}

.staffer h3 {
  z-index: 1;
}

.staffer img {
  max-width: 30%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.blackline{
  background-color: black;
  height: 3px;
  overflow: hidden;
  text-align: center;
}
.box{
  background-color: rgb(46, 46, 46, .5);
  width: 50%;
  height: 175px;
  position: relative;
  margin: auto;
  margin-top: 55px;
  border: 5px solid #27104e;
  border-image-slice: 1;

}
.title{
  color: #9D72ED;
  text-shadow: 5px 5px black;
  font-size: 40px;
  text-align: center;
  margin-top: 20px;
}
.subtitle{
  text-align: center;
  margin-top: -50px;
     cursor: pointer;

}
.subtitle p2{
  font-size: 25px;
  color: white;
  text-shadow: 5px 5px black;

}
.titleimg{
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;

}
.namemc{
  min-width: 45px;
}
.birdlol{
  min-width: 45px;
  margin-top: 4px;
}
.twitch{
  min-width: 45px;
}
.youtube{
  min-width: 45px;
}
.discordimg{
  min-width: 45px;
}
.moondust{
  min-width: 25px;

}
.namemc:hover{
  animation: tada;
  animation-duration: .5s;
}

.birdlol:hover{
  animation: tada;
  animation-duration: .5s;
}
.twitch:hover{
  animation: tada;
  animation-duration: .5s;
}
.youtube:hover{
  animation: tada;
  animation-duration: .5s;
}
.discordimg:hover{
  animation: tada;
  animation-duration: .5s;
}
.moondust:hover{
  animation: tada;
  animation-duration: .5s;
}

.TinySurvival{
  word-wrap: break-word;
}

.border-gradient2 {
  border-image-slice: 1;
  text-align: center;
  margin-top: 0;
  margin-left: 3%;
  margin-right: 3%;
  min-width: 10%;
}
.border-gradient-purple2 {
  border-image-source: linear-gradient(to right, #7F3EB2 , #5F3EB3);
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}
.about{
  position:absolute;
  top:4vh;
  word-wrap: break-word;
}
.about p{
  font-size: 19px;
}
.footer {
  font-size:16px;
  text-align:center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  margin-top:auto;
 background-color:#27104E;
}

.newsletters{
  display:block;
  padding:0;
  margin:0;
  margin-top:4%;
}
.newsletters p{
  margin:0;
  font-size:18px;}
  
.NewsletterButtons{
  padding: 0;
  margin: 0%;
  width: auto;
  display:block;
 }
.NewsletterButton{
  text-decoration:none;
  text-align:center;
  width:21%;
  display:block;
  padding:0.3%;
  margin:0;
     font-size:25px;  
     border-radius:6px;
     border:5px solid #180a30;
    font-family: "Minecraft Regular", Helvetica, sans-serif;
  color: #d0c5e6;
 background-color:#27104E;
 transition:0.5s
}
  .NewsletterButton:hover{
    cursor:pointer;
    transition:0.5s;
    color: #7c5ca1; /* Change text color on hover */
  }
  
  .contentGuides{ 
    width:100%;
    position:fixed;
   padding-top:2.76%; 
  }
  
