::-moz-selection { /* Code for Firefox */
  color: rgb(189, 146, 52);
  background: rgb(133, 114, 51);
}

::selection {
  color: rgb(189, 146, 52);
  background: rgb(133, 114, 51);
}

::-webkit-scrollbar {
  width: 8px;
  height: 10px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgb(128, 128, 128); 
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #ffa734;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #967226; 
}

*{
  margin: 0;
  padding: 0;
}

html{
    scroll-behavior: smooth; 
}

body{
    background-image: url(media/bg6.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}
.whitelist{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
  
}

#whitelistText{
    font-family: rubik;
    font-size: 5vw;
    background-image: linear-gradient(to right,rgb(133, 114, 51), rgb(189, 146, 52));
    -webkit-background-clip: text;
    color: transparent;
    font-family: "Times New Roman", Times, serif;
    text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.4);
    margin: 100px 0px 50px 0px;
}

#InputField1, #InputField2, #InputField3, #InputField4{
    width: 50%;
    height: 50px;
    border: none;
    border-radius: 10px;
    background-color: rgba(186, 157, 60, 0.43);
    font-size: 20px;
    font-family: rubik;
    padding: 5px 10px 0px 10px;
    border: none;
    outline: none;
    margin-bottom: 2%;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.4);
}

#InputField-last1, #InputField-last2{
    width: 50%;
    height: 50px;
    border: none;
    border-radius: 10px;
    background-color: rgba(186, 157, 60, 0.43);
    font-size: 20px;
    font-family: rubik;
    padding: 5px 10px;
    padding-bottom: 40px;
    border: none;
    outline: none;
    margin-bottom: 2%;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.4);
}

#SendMessage{
   margin-top: 20px;
    width: 8%;
    height: 50px;
    font-size: 1em;
    border: none;
    border-radius: 20px;
    background: rgba(186, 157, 60, 0.43);
    color: white;
    font-family: rubik;
    cursor: pointer;
    animation: Btn1, 1s;
    font-size: 1vw;
    transition: ease 0.3s;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.4);
}
#MessageSent{
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #00b606;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  padding: 16px;
  position: fixed;
  z-index: 9999;
  left: 50%;
  top: 30px;
  font-size: 17px;
}
#MessageFailed{
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #d60e0e;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  padding: 16px;
  position: fixed;
  z-index: 99999;
  left: 50%;
  top: 30px;
  font-size: 17px;
}

#MessageSent.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

#MessageFailed.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

#SendMessage:hover{
    animation: HoverBtn1, 0.1s;
    background: white;
    color: black;
    box-shadow: 0px 10px 10px rgba(255, 255, 255, 0.545);
}
.Name-Input input{
    border: none;
    appearance: none;
    padding: 12px;
    border-radius: 3px;
    width: 120%;
    outline: none;
    background-color: rgba(186, 146, 60, 0.43);
    font-family: rubik;
    color: rgb(0, 0, 0);
    font-size: 20px;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.4);
}
.Name-Input{
    position: relative;
    font-size: 20px;
    padding-top: 20px;
    margin-bottom: 30px;
    font-family: rubik;
    display: flex;
    justify-content: center;
    cursor: auto;
}
.Name-Input .placeholder{
    position: absolute;
    left: 12px;
    color: rgb(0, 0, 0);
    opacity: 0.7;
    top: calc(50% + 10px);
    transform: translateY(-50%);
    font-family: rubik;
    transition: 
    top 0.3s ease,
    font-size 0.3s ease,
    color 0.3s ease;
}
.Name-Input input:valid + .placeholder{
    top: 10px;
    font-size: 10px;
    color: #000000;
}
.Name-Input input:focus + .placeholder{
    top: 10px;
    font-size: 15px;
    color: #000000;
}

footer a{
  display: table;
  margin-left: auto;
  margin-right: auto;
}

.footer-logo{
    width: 400px;
}

footer div{
    display: flex;
    justify-content: center;
    align-items: center;
}

footer{
    padding: 100px 0 50px 0;
    position: relative;
}

.icons{
    font-size: 30px;
    display: flex;
    justify-content: center;
}
  
.icons a{
    margin-left: 5px;
    margin-right: 5px;
    border: none;
    background-image: linear-gradient(to right,rgb(133, 114, 51), rgb(189, 146, 52));
    -webkit-background-clip: text;
    color: transparent;
    transition: 0.15s ease;
}
  
.icons a:hover{
    font-size: 40px;
    color: black;
}
  
.icons .ju{
    margin-right: 20px;
}

.preloader{
    background: white url(media/Galaxy_rp.png) no-repeat center center ;
    background-size: 300px;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 100;
    margin: -10px;
    padding: 10px;
    transition: 0.5s ease;
  }

.disppear{
    animation: loading 1s forwards;
}

@keyframes loading {
    100%{
      opacity: 0;
      visibility: hidden;
    }
}

.title{
    font-size: 20px;
    margin-top: -5px;
    margin-bottom: 5px;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
}

:root {
    --loader-color: rgb(189, 146, 52);
    --back-color: rgb(133, 114, 51);
    --time: 3s;
    --size: 5px;
  }
  
  .loader {
      overflow: hidden;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0; left: 0;
    display: flex;
    align-content: center; 
    justify-content: flex-start;  
      z-index: 100;
  }
  
  .loader__element {
      height: var(--size);
      width: 100%;
      background: var(--back-color);
  }
  
  .loader__element:before {
      content: '';
      display: block;
      background-color: var(--loader-color);
      height: var(--size);
      width: 0;
    animation: getWidth var(--time) ease-in infinite;
  }
  
  @keyframes getWidth {
      100% { width: 100%; }
  }
  
  .disppear-line{
    animation: loading 1s forwards;
  }
  
  @keyframes loading {
    100%{
      opacity: 0;
      visibility: hidden;
    }
  }

  .nav-a {
    position: relative;
    display: block;
    padding: 16px 0;
    margin: 0 12px;
    line-height: 12px;
    transition: color 0.1s,background-color 0.1s,padding 0.2s ease-in;
  }
  .nav-a::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 3px;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: rgb(189, 146, 52);
    transform-origin: right top;
    transform: scale(0, 1);
    transition: color 0.1s,transform 0.2s ease-out;
  }
  .nav-a:active::before {
    background-color: rgb(189, 146, 52);
  }
  .nav-a:hover::before, .nav-a:focus::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }

  #navigation {
    position: fixed;
    width: 100%;
    z-index: 1;
    top: 0;
    font-family: 'Oswald', sans-serif;
    background-color: rgba(252, 252, 252, 0.953);
    overflow: hidden;
    display: flex;
    z-index: 1;
    padding: 10px 0;
    height: 60px;
    align-items: center;
    transition: 0.5s ease;
  }

  #logo{
    margin: 0px 10px;
    height: 40px;
    width: 45px;
    transition: 0.5s ease;
  }
  
 .nav-a {
    color: black;
    text-align: center;
    margin: 0 11px;
    text-decoration: none;
    font-size: 17px;
    transition: 0.15s ease;
  }
  
  #navigation .nav-a:hover {
    color: rgb(189, 146, 52);
  }
  
  #navigation .nav-a.active {
    color: rgb(189, 146, 52);
  }

  .btn-rp1{
    width: 100%;
    display: flex;
    justify-content: right;
    background-color: transparent;
    border-color: transparent;
    border-radius: 20px;
    margin-right: 10px;
  }
  
  .nav-rp{
    color: rgb(0, 235, 121);
    text-align: center;
    padding: 11px 25px;
    text-decoration: none;
    font-size: small;
    transition: 0.15s ease;
    background: rgba(0, 235, 121, 0.133);
    border-radius: 20px;
    border: 2px solid rgb(0, 235, 121);
  }
  
  .nav-rp:hover{
    background-color: rgb(0, 235, 121);
    color: white;
  }

  .lm{
    font-weight: normal;
    color: rgb(189, 146, 52);
    transition: 0.1s ease;
    text-shadow: 0px 0px 00px rgb(0, 0, 0);
  }

  .lm:hover{
    color: white;
    font-size: 25px;
    text-shadow: 0px 2px 10px rgb(0, 0, 0);
  }

  #snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: rgb(189, 146, 52);
    color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    top: 30px;
    font-size: 17px;
  }
  
  #snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
  }
  
  @-webkit-keyframes fadein {
    from {top: 0; opacity: 0;} 
    to {top: 30px; opacity: 1;}
  }
  
  @keyframes fadein {
    from {top: 0; opacity: 0;}
    to {top: 30px; opacity: 1;}
  }
  
  @-webkit-keyframes fadeout {
    from {top: 30px; opacity: 1;} 
    to {top: 0; opacity: 0;}
  }
  
  @keyframes fadeout {
    from {top: 30px; opacity: 1;}
    to {top: 0; opacity: 0;}
  }


  #Mylinks ul{
    width: 200%;
    display: flex;
  }

  #Mylinks ul li{
    float: left;
    list-style: none;
  }