.server {
  border-radius: 38px;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  max-width: 1070px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  padding: 40px;
  gap: 20px;
}
.server > .info {
  color: var(--third-text);
  flex-direction: column;
  align-items: baseline;
  gap: 5px;
}
.tag {
  font-size: 30px;
  text-align: center;
  align-items: center;
  display: flex;
  gap: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.about {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.avatar {
  position: absolute;
  right: 40px;
}
.avatar > img {
  border-radius: var(--radius-xl);
}
.tag > img {
  width: 30px;
}
.online {
  display: flex;
  flex-direction: column;
  color: var(--second-text);
}
.server > .buttons {
  flex-direction: row;
  max-width: 400px;
}
.buttons > .btn:nth-child(1) {
  width: 80%;
  min-width: 100px;
}

.buttons > .btn:nth-child(2) {
  width: 20%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.buttons > .btn:nth-child(2):hover {
  border: 1px solid rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 576px) {
  .server > .info {
    order: inherit;
    align-items: center;
  }
  .avatar {
    position: relative;
    right: 0;
  }
  .server {
    text-align: center;
    align-items: center;
  }
}
nav[aria-label="breadcrumb"] {
  padding: 0px 20px;
}
