body{
  background-color: #FBFBFB;
}
main{
  display: flex;
  width: 100vw;
  height: 100vh;
}
section.suspended{
  width: 957px;
  max-width: 90vw;
  background-color: white;
  margin: auto auto auto auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 60px 40px;
  box-shadow: 0px 2px 8px 2px rgba(112,112,112,0.50);
  align-items: center;
  
}
section.suspended > img{
  max-width: 100%;
}
h2{
  font-family: "Chromatica Black";
  font-size: 30px;
}
.suspended > p{
  font-family: "Chromatica Medium";
}
.suspended > p:first-of-type{
  font-size: 20px;
}
.suspended > p:last-of-type{
  font-size: 16px;
}
.items__container{
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 80px;
}
.item{
  width: 265px;
  height: 50px;
  font-family: 'BPG ExtraSquare Mtavruli';
  background-color: #F8F8F8;
  border-radius: 15px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: all 0.4s ease;
}
.item a{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
}
.item div{
  position: absolute;
  left: -15px;
  top: -1px;
  box-shadow: -1px 2px 4px 2px rgba(112,112,112,0.17);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}
.item a span{
  max-width: 60%;
  text-align: left;
  line-height: 1.2;
}
.item:hover{
  background-color: #d1d1d1;
  transition: all 0.4s ease;
}

.uploadToPublic .items__container{
  margin-top: 50px;
}

@media only screen and (max-width: 1000px) {
  section.suspended{
    margin-top: 30px;
    padding-top: 20px;
    margin-bottom: 20px;
  }
  .items__container{
    margin-top: 20px;
    justify-content: center;
    gap: 30px;
  }
  .suspended > p:first-of-type{
    font-size: 17px;
  }
  .uploadToPublic .items__container{
    margin-top: 25px;
  }
}