@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800&display=swap');

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

:root {
  --blurple: #7289da;
  --yellow: #fee75c;
  --lightgray: #36393f;
  --darkgray: #2c2f33;
}

/* DEFAULT  */

body {
  color: white;
  background-color: #7289da;
  font-family: 'Montserrat', sans-serif;
}

.top {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #7289da;
  height: 560px;
}

.jumbo {
  display: flex;
  flex-wrap: wrap;
}

.logo {
  height: 500px;
  width: 500px;
  margin-top: auto;
  float: left;
}

.namecenter {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 70px;
}

.name {
  text-align: center;
}

.main {
  font-size: 80px;
  margin-bottom: auto;
}

.sub {
  color: #E6E6E6;
  font-size: 33px;
  margin-top: auto;
  margin-bottom: auto;
}

.button {
  color: #7289da;
  background-color: var(--yellow);
  border-radius: 25px;
  border: 3px solid #fee75C;
  font-family: 'Montserrat', sans-serif;
  font-size: 25px;
  padding: 10px;
  margin: 5px;
  margin-top: 13px;
  transition: all 0.3s ease-out;
}
.button:hover {
  transform: translateY(-0.25em);
  box-shadow: 0 0.5em 0.5em -0.4em black;
  cursor: pointer;
}

.arrow {
  display: flex;
  justify-content: center;
  align-items: center;
}

.material-icons.md-48 {
  font-size: 100px;
  color: #fee75c;
  transition: all 0.3s ease-out;
}

.material-icons.md-48:hover {
  transform: translateY(10px);
}

.infopage {
  width: 100%;
  background-color: #2c2f33;
  text-align: center;
}

.spacer {
  height: 60px;
}

.infohead {
  font-size: 50px;
}

.infocards {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.infoservers {
  height: 300px;
  width: 200px;
  background-color: #2f3136;
  border-radius: 25px;
  padding: 10px;
  box-shadow: 1px 1px 25px 5px #202020;
  float: left;
  margin: 50px;
}

.infomain {
  font-size: 55px;
  margin-top: 80px;
  color: #7289da;
}

hr {
  margin-top: 77px;
  background-color: #fee75C;
  border: 1px solid #fee75C;
  border-radius: 25px;
}

.infosub {
  margin-top: 18px;
}

.info-foot {
  margin-top: 25px;
}

.arrow-info {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2c2f33;
}

.commandspage {
  height: auto;
  width: 100%;
  background-color: #36393f;
  text-align: center;
  padding-bottom: 10px;
}

.cmdtxt {
  font-size: 50px;
}

.cmdcategory {
  width: 90%;
  max-width: 1000px;
  margin: 2rem auto;
}

.cmdcategory-item {
  background-color: #40444b;
  color: #7289da;
  margin: 1rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px 0 rgba(0,0,0,0.25);
}

.cmdcategory-head {
  padding: 0.5rem 3rem 0.5rem 1rem;
  min-height: 3.5rem;
  line-height: 1.25rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.cmdcategory-head::after {
  content: "\25BE";
  font-size: 2rem;
  position: absolute;
  right: 1rem;
}

.cmdcategory-head.active::after {
  content: "\25B4";
}

.cmdcategory-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.cmdcategory-body-content {
  padding: 1rem;
  line-height: 1.5rem;
  border-top: 1px solid;
  border-image: linear-gradient(to right, transparent, #34495e, transparent) 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*TABLE START*/

cmd-table {
  border-collapse: collapse;
  background-color: white;
  text-align: left;
  overflow: hidden;
}

.cmd-head {
  background-color: #2f3136;
}

th {
  padding: 1rem 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-size: 0.7rem;
  font-weight: 900;
}

td {
  padding: 1rem 10px;
}

.tdc {
  color: #fee75c;
}

.status {
  border-radius: 0.2rem;
  background-color: #fee75c;
  padding: 0.2rem 1rem;
  text-align: center;
}

/* .amount {
  text-align: right;
} */

tr:nth-child(even) {
  background-color: #36393f;
}

/*TABLE END*/

.arrow-cmd {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #36393f;
}

.invitepage {
  height: 560px;
  width: 100%;
  background-color: #2c2f33;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

.invitebox {
  height: 222px;
  width: 500px;
  background-color: #2c2f33;
  margin: auto;
  border-radius: 25px;
  box-shadow: 1px 1px 25px 5px #202020;
  display: flex;
}

.invlogo {
  height: 180px;
  width: 180px;
  border-radius: 25px;
  margin: 20px 0px 0px 20px;
}

.invconbox {
  margin-top: 30px;
  margin-left: 30px;
  text-align: left;
}

.invcon {
  margin-top: 20px;
  margin-bottom: auto;
}

.invconn {
  margin-top: auto;
  color: #7289da;
}

.inv-btn-holder {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 33px;
}

.invbtn {
  height: 50px;
  width: 100px;
  background-color: #57F287;
  border-radius: 25px;
  text-align: center;
  padding: 8px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-out;
  padding-left: 55px;
  padding-right: 55px;
  color: white;
}

.invbtn:hover {
  box-shadow: 1px 1px 25px 1px black;
}

/*FOOTER*/

.footer-dark {
     padding: 50px 0 0 0;
     color:#f0f9ff;
     background-color:#36393f;
}
 .footer-dark h3 {
     margin-top:0;
     margin-bottom:12px;
     font-weight:bold;
     font-size:16px;
     color: var(--blurple);
}
 .footer-dark ul {
     padding:0;
     list-style:none;
     line-height:1.6;
     font-size:14px;
     margin-bottom:0;
}
 .footer-dark ul a {
     color:inherit;
     text-decoration:none;
     opacity:0.6;
}
 .footer-dark ul a:hover {
     opacity:0.8;
}
 @media (max-width:767px) {
     .footer-dark .item:not(.social) {
         text-align:center;
         padding-bottom:20px;
    }
}
 .footer-dark .item.text {
     margin-bottom:36px;
}
 @media (max-width:767px) {
     .footer-dark .item.text {
         margin-bottom:0;
    }
}
 .footer-dark .item.text p {
     opacity:0.6;
     margin-bottom:0;
}
 .footer-dark .item.social {
     text-align:center;
}
 @media (max-width:991px) {
     .footer-dark .item.social {
         text-align:center;
    }
}
 .footer-dark .item.social > a {
     font-size:20px;
     width:36px;
     height:36px;
     line-height:36px;
     display:inline-block;
     text-align:center;
     border-radius:50%;
     /*box-shadow:0 0 0 1px rgba(255,255,255,0.4);*/
     margin:0 8px;
     color: var(--yellow);
}
 .footer-dark .item.social > a:hover {
     opacity:0.9;
}
 .footer-dark .copyright {
     text-align:center;
     padding-top:24px;
     opacity:0.3;
     font-size:13px;
     margin-bottom:0;
}
 .container {
     width: 100%;
     padding-right: 15px;
     padding-left: 15px;
     margin-right: auto;
     margin-left: auto;
}

 @media (min-width: 576px){
     .container {
         max-width: 540px;
    }
}
 @media (min-width: 768px) {
     .container {
         max-width: 720px;
    }
}
 @media (min-width: 992px) {
     .container {
         max-width: 960px;
    }
}

 .row {
     display: -ms-flexbox;
     display: flex;
     -ms-flex-wrap: wrap;
     flex-wrap: wrap;
     margin-right: -15px;
     margin-left: -15px;
}

 .col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
     position: relative;
     width: 100%;
     min-height: 1px;
     padding-right: 15px;
     padding-left: 15px;
}
 dl, ol, ul {
     margin-top: 0;
     margin-bottom: 1rem;
}
 .footer-dark a {
     color: var(--yellow);
     text-decoration: none;
     background-color: transparent;
     -webkit-text-decoration-skip: objects;
}

 @media (min-width: 576px){
     .col-sm-6 {
         -ms-flex: 0 0 50%;
         flex: 0 0 50%;
         max-width: 50%;
    }
}

 @media (min-width: 768px){
     .col-md-3 {
         -ms-flex: 0 0 25%;
         flex: 0 0 25%;
         max-width: 25%;
    }
}

 @media (min-width: 768px){
     .col-md-6 {
         -ms-flex: 0 0 50%;
         flex: 0 0 50%;
         max-width: 50%;
    }
}
 .col {
     -ms-flex-preferred-size: 0;
     flex-basis: 0;
     -ms-flex-positive: 1;
     flex-grow: 1;
     max-width: 100%;
}

.arrow-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #36393f;
}

.material-icons.md-48.up:hover {
  transform: translateY(-10px);
}


/* MOBILE */

@media only screen and (max-width: 967px) {
  .top {
    width: 100%;
    height: 100%;
    text-align: center;
    display: inline-block;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .jumbo {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .logo {
    height: 400px;
    width: 400px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .namecenter {
    margin: auto;
  }

  .main {
    margin-left: auto;
  }

  .cmdcategory-body-content {
    overflow: auto;
  }

}

@media only screen and (max-width: 530px) {
  .invitebox {
    height: 444px;
    width: 222px;
    display: block;
    margin: 0 0 50px 0;
    padding: 0 0 20px 0;
  }

  .invlogo {
    margin: 20px 0 0 0;
  }

  .inv-btn-holder {
    margin: 20px 0 0 0;
  }

  .infohead {
    margin: 25px 0 20px 0;
  }

  .invconbox {
    text-align: center;
    margin: auto;
  }
}

/* GLOBAL */

code {
  line-height: 1.225rem;
  background: #2f3136;
  border: 1px solid #202225;
  padding: .5em;
  border-radius: 4px;
  width: 90%;
}

::selection {
  color: #7289da;
  background-color: white;
}

/* width */
::-webkit-scrollbar {
  /*width: 20px;*/
  width: 13px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--lightgray);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #fee75c;
  border-radius: 25px;
  /*border: 5px solid grey;*/
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #fee75c;
}