/* DEFAULTS */

body {
  background: #101010;
  margin: 0px;
  padding: 0px;
  position: relative;
  min-height: 100vh;
}

::-moz-selection { /* Code for Firefox */
  color: #222;
  background: #55ff55;
}

::selection {
  color: #222;
  background: #55ff55;
}

/* NAVBAR */

.navbar_bar {
  background: #222;
  color: #999;
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  display: flex;
  flex-direction: row;
  text-align: center;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
}

.navbar_ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin-left: auto;
}

.navbar_a {
  text-decoration: none;
  color: #999;
  padding: 0px 10px;
  font-family: Montserrat;
  transition-duration: 300ms;
  font-weight: lighter;
}

.navbar_logo {
  color: #55ff55;
  font-family: Montserrat;
  letter-spacing: 8px;
  font-size: 18px;
  display: flex;
  float: left;
  justify-self: flex-start;
  margin: 20px;
}

.nav_ico {
transition-duration: 300ms;
}

.nav_ico:hover {
  color: #55ff55;
}

.navbar_a:hover {
  color: #55ff55;
}

.navbar_pfp {
width: 35px;
height: 35px;
border-radius: 100%;
margin-right: 20px;
margin-left: 10px;
transition-duration: 300ms;
}

.navbar_pfp:hover {
  opacity: 0.6;
}

/* WELCOME BANNER */

.welcome_banner_container {
overflow: hidden;
width: 100vw;
height: 350px;
justify-content: center;
align-items: center;
display: flex;
border-bottom: 1px solid #999;
}

.welcome_banner_img {
width: 150vw;
height: 200vh;
display: flex;
display: flex;
align-items: center;
justify-content: center;
transform: rotate(0deg);
animation: ease;
animation: spinbanner;
animation-duration: 0.001ms;
animation-iteration-count: infinite;
}

@keyframes spinbanner {
  0% {transform: rotate(0deg);}
  50% {transform: rotate(100deg);}
  75% {transform: rotate(-200);}
  100% {transform: rotate(0);}
}

.welcome_banner_text {
color: #55ff55;
display: flex;
font-family: Montserrat;
font-size: 70px;
position: absolute;
letter-spacing: 10px;
align-self: center;
margin-bottom: 10px;
}

/* BODY TEXT */

.body_text_p {
  color: #999;
  margin: 100px;
  margin-bottom: 40px;
  min-height: 100%;
  padding-bottom: 400px;
}

/* FOOTER */

.footer_container {
width: 100%;
bottom: 0;
position: absolute;
border-top: 1px solid #999;
}

.footer_bar {
  background: #222;
  margin-top: auto;
  width: 100%;
  height: 400px;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  position: relative;
}

.footer_ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: auto;
}

.footer_a {
  color: #999;
}

.footer_li {
  margin: 20px 0px;
}

.footer_ico {
  background: #222;
  border-radius: 100%;
  margin: 10px 10px;
  color: #55ff55;
  font-size: 20px;
  transition-duration: 300ms;
  padding: 10px 0px;
}

.footer_ico:hover {
  color: #999;
}

.footer_copyright {
bottom: 0;
background: #202020;
width: 100%;
height: 45px;
position: absolute;
color: #999;
display: flex;
justify-content: center;
align-items: center;
font-family: Montserrat;
font-weight: lighter;
}

.alllinks {
  color: #55ff55;
  font-family: Montserrat;
  padding: 10px 30px;
  background: #282828;
  margin: 10px;
  border-radius: 25px;
}





@media screen and (max-width: 1023px) {
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
}

  @media screen and (min-width: 1024px) {
    .mobile {
      display: none;
    }
    .desktop {
      display: block;
    }
  }


  .mobile {
  }

  /* NAVBAR */

  .mnavbar_bar {
    background: #222;
    width: 100%;
    height: 60px;
    overflow: hidden;
    position: fixed;
    top: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 9999999
  }

  .mnavbar_logo {
  color: #55ff55;
  font-family: Montserrat;
  font-size : 18px;
  margin-right: auto;
  margin-left: 20px;
  letter-spacing: 8px;
  z-index: 1000;
  }

  .mnavbar_menubutton {
margin-right: 20px;
background: transparent;
outline: none;
border: none;
color: #999;
transition-duration: 300ms;
padding: 10px;
  }

  .mnavbar_pfp {
    width: 35px;
    height: 35px;
    border-radius: 100%;
    margin-right: 24px;
    transition-duration: 300ms;
    z-index: 10000;
    }
    
    .mnavbar_pfp:hover {
      opacity: 0.6;
    }

    .mnavbar_menubutton {
      z-index: 1000;
      }

  /* SIDEBAR */

.sidebar_bar {
width: 0px;
height: 100vh;
position: fixed;
left: 0;
background: #222;
z-index: 100;
top: 0;
overflow: hidden;
transition-duration: 300ms;
display: flex;
justify-content: center;
align-items: center;
}

.sidebar_active_bar {
  width: 100%;
}

.sidebar_ul {
  list-style: none;
}

.sidebar_a {
  color: #999;
  font-family: Montserrat;
  margin: 50px;
  padding: 50px;
  font-size: 30px;
}

.sidebar_li {
  margin: 20px;
}

/* WELCOME BANNER */

.mwelcome_banner_container {
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mwelcome_banner_img {
  width: 100%;
  height: 100%;
}

.mwelcome_banner_text {
  color: #55ff55;
  font-family: Montserrat;
  display: flex;
  position: absolute;
  z-index: 1;
  display: flex;
}













  /* SCROLLBAR */

  .mnavbar_menubutton:hover {
    color: #55ff55;
  }

  body::-webkit-scrollbar {
    width: 5px;
  }
   
  body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px #202020;
    position: absolute;
  }
   
  body::-webkit-scrollbar-thumb {
    background-color: #55ff55;
    border-radius: 25px;
  }

  .desktop{
    overflow: hidden;
    width: calc(1024px + 0);
    }
    
    .desktop{
    overflow-y:scroll;
    }


    /* MOBILE */

    /
  