@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
}
html,
body {
  height: 100%;
  color: white;
  font-family: Roboto; 
}

img {
  display:flex;
width: 100%;
}

a {
 text-decoration: none;
 color: #ffffff;
 cursor: pointer;
}

.main {
    height: 100%;
    position: relative;
    z-index: 2;
    background: #351B82;
    padding: 16px;
}

.container {
  background: #070707;
  width: 100%;
  height: 100%;
  padding: 0 90px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
}

.wrapper {
  max-width: 1380px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.left {
 max-width: 604px;
 width: 100%;
}

.right {
 max-width: 604px;
 width: 100%;
}

.main__image-wrapper {
  padding-top: 80px;
}

.main__image {
  border-radius: 26px;
  margin-top: 12px;
}

.button {
 background: #7950F2;
 padding: 10px 0px;
 width: 100%;
 display: flex;
 border-radius: 12px;
 justify-content: center;
 transition: all 0.4s;
 color: white;
 font-weight: 500;
}

.button:hover {
 background: #5835B0
}

.button + .button {
 margin-left: 12px;
}

.button__list {
 display: flex;
 justify-content: space-between;
 margin-top: 28px;
}

.server__list {
 margin-top: 80px;
 max-width: 602px;
 width: 100%;
 margin-left: 16px;
}

.server {
 padding: 32px;
 width: 100%;
 border: 2px solid #4924B5;
 display: flex;
 justify-content: space-between;
 border-radius: 20px;
 backdrop-filter: blur(20px);
 background: linear-gradient(122.99deg, rgba(255, 255, 255, 0.04) 5.64%,rgba(255, 255, 255, 0.01) 118.557%);
}

.server:hover {
 background: linear-gradient(122.99deg, rgba(255, 255, 255, 0.08) 10.64%,rgba(255, 255, 255, 0.02) 118.557%);
}

.server__right {
    display: flex;
    flex-direction: column;
    align-items: end;
    color: #7950F2;
}

.server__title {
 font-family: Montserrat; 
 font-size: 16px;
 font-weight: 500;
}

.server__title span {
 font-weight: 400;
}
.server + .server {
 margin-top: 16px;
}

.light {
    position: absolute;
    z-index: 3;
    width: 103.72px;
    height: 225.72px;
    left: 50%;
    right: 50%;
    top: 30%;
    transform: rotate(36.38deg);
    filter: blur(131px);
    background: rgb(121, 80, 242);
}

.subtitle {
    margin-top: 32px;
    border-radius: 8px;
}


@media screen and (max-width: 1281px) {

 .main {
   min-height: 100%;
   height: auto;
 }
 .wrapper {
  flex-direction: column;
  align-items: center;
 }

  .server__list {
    padding-bottom: 32px;
  }
}



@media screen and (max-width: 805px) {
   .right {
   width: auto;
 } 
}