html {
  &::-webkit-scrollbar {
    width: 5px;
    height: 0px;
  }
  &::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 10px;
  }
}

body{
  min-height: 100vh;
  background: var(--black);

}

.container{
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  &>:nth-last-child(n+2){
    margin-bottom: 24px;
  }
}

/* Нижние отступы для последнего контейнера */
@media screen and (min-width: 1136px){
  #root > :nth-last-child(n+2).container{
    margin-top: 120px;
  }
  
  #root > :last-child.container{
    margin-bottom: 120px;
  }
}

@media screen and (min-width: 744px) and (max-width: 1135px){
  #root > :nth-last-child(n+2).container{
    margin-top: 80px;
  }
  
  #root > :last-child.container{
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 743px){
  #root > :nth-last-child(n+2).container{
    margin-top: 60px;
  }
  
  #root > :last-child.container{
    margin-bottom: 60px;
  }
}