p .spanColor:first-child{
  font-size: xx-large;
}

.spanColor{
  background-image: var(--spanColor);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: bold;
}

.bg1, .bg2, .bg3{
  min-height: calc(90vh - var(--height-navbar));
  display: flex;
  align-items: center;
}

.bg1 .container{
  display: flex;
  justify-content: space-between;
  align-content: center;
  height: 100%;
}

.bg1 .container div{
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#textRegister{
  display: inline-block;
  background-image: var(--bg-btn-textRegister);
  border-radius: 1.5rem;
  padding: 1rem 1.5rem;
  color: white;
  font-weight: 700;
  text-decoration: none;
  transition: all, 0.2s;
}

#textRegister:hover{
  transform: scale(1.1);
}

#serverPicture{
  width: 70%;
  height: 70%;
  display: none;
  position: relative;
  right: -50%;
  transform: scaleX(-1) translateX(50%);
}

.bg2, .bg3{
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  border-top: 1px solid #4f4f4f;
}

.why{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin: 4rem 0;
}

.why .arrow{
  transform: rotate(90deg);
}

.cart{
  background: var(--bg-cart);
  border-radius: 1rem;
  border: 1px solid var(--border-cart);
  padding: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  width: 50vw;
  height: 120px;
}

.cart h3{
  margin: 1rem;
  text-align: center;
}

.cart div{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cart p{
  margin: auto 1rem;
  text-align: center;
}

.arrow-right path{
  fill: var(--arrow-color);
}

.userList{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}

.userList .userCard{
  background: #333235;
  border: 1px solid #4f4f4f;
  display: flex;
  justify-content:space-between;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem 1rem;
  box-shadow: 0px 8px 12px 0px black;
}

.userList .userCard div{
  width: 76%;
  text-align: right;
}

.userCard .userPicture{
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
}
.userCard .fs4{
  font-size: 1.03em;
  font-weight: 700;;
}

.userCard .fs2{
  font-size: 0.8em;
}

.userCard p{
  word-wrap: break-word;
}

.bg2 a, .bg3 a{
  color: rgb(0, 209, 255);
  transition: all, 0.5s;
}

.bg2 a:hover, .bg3 a:hover{
  color: rgb(255, 0, 245);
}


@media(min-width: 768px){
  h1{
    font-size: 2.3em;
  }  
  
  .bg1 .container div{
    max-width: 50%;
    font-size: 1.5em;
  }

  .bg2, .bg3{
    padding-top: 0;
    padding-bottom: 0;
  }

  #serverPicture{
    display: inline;
  }

  h2{
    font-size: 2.5em;
  }

  .cart{
    width: 220px;
  }

  .why{
    flex-direction: row;
  }

  .why .arrow{
    transform: none;
  }

  .userList .userCard{
    width: 20rem;
    margin: unset;
  }
}