body {
  background-color: #000;
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

video {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  filter: blur(3px)
}

.c-team-card {
  margin-top: 50px;
}

.c-team-card-cell * {
color: #ffffff;
}



.at-section__title {
  margin: 0 0 70px;
  color: rgb(255, 255, 255);
  font-family: "Roboto", sans-serif;
  font-size: 3.5rem;
  font-weight: 200;
  line-height: 0.10rem;
  text-align: center;
}

.at-section__servercount {
  color: rgb(255, 255, 255);
  font-family: "Roboto", sans-serif;
  line-height: 5.625rem;
  text-align: center;
}

.at-server__avatar {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  margin: 0 auto 60px;
  overflow: hidden;
}

.container {
  max-width: 1170px;
  width: 100%;
  margin: 100px auto;
  padding: 0 20px;
  box-sizing: border-box;
  transform-origin: top center;
  transform: scale(0.8);
}

.button {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  background: #7289da;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 20px 100px;
  display: inline;
  font-weight: normal;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
}
.glow-button:hover {
  color: rgba(255, 255, 255, 1);
  box-shadow: 0 5px 15px rgba(65, 84, 255, 0.4);
}
.users{
  position: absolute;
  display:grid;
  grid-template-columns:auto auto auto auto auto;
  grid-gap: 30px;
  top: 110%;
  left: 50%;
  transform: translate(-50%, 0);
}
.userElement{
  width: 20vh;
  height: 20vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: all .2s ease-in-out;
}
.PFPElement{
  margin:auto;
  position: relative;
  top: 60%;
  left: 50%;
  transform: translate(-100%, -100%);
  width: 50%;
  height: 50%;
  border-radius: 100%;
}
.usernameElement{
  margin-top:15%;
  margin-bottom: 15%;
  font-size: 150%;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  flex-wrap: wrap;
}
.userElement:hover{
  transform:scale(1.05);
}
.online{
  border:3px solid #3AA55D;
}
.dnd{
  border:3px solid #dc3d40;
}
.idle{
  border:3px solid #eea019;
}
.offline{
  border:3px solid #747f8d;
}
@media only screen and (max-width: 600px) {
  .pageTitle{
    font-size: 6vw;
  }
  .invite{
    font-size: 10vw;
  }
  .users{
    position: absolute;
    display:grid;
    grid-template-columns:auto auto;
    grid-gap: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0);
  }
  html{
    overflow-y:scroll;
  }
  .userElement{
    height:30vh;
  }
  .PFPElement{
    width:auto;
    transform: translate(-60%,-100%)
  }
  .usernameElement{
    font-size: 100%;
  }
  .userElement:hover{
    transform:scale(1.00);
  }
}

.onlinestatus{
  margin: 0 0 70px;
  color: rgb(255, 255, 255);
  font-family: "Roboto", sans-serif;
  line-height: 2.625rem;
  text-align: center;
}

.dot{
  height: 18px;
  width: 18px;
  border-radius: 50%;
  display: inline-block;
  margin: 0 2px;
  background:#747f8d;
}
.dotOnline{
  background: #3AA55D;
}
