html {
  scroll-behavior: smooth;
}

#scroll-to-top {
  display: none;
}

@media (min-width: 1100px) {
  #scroll-to-top {
    display: block;
    background-color: rgba(19,20,18,0.6);
    width: 44px;
    height: 40px;
    position: fixed;
    bottom: 0;
    right: 30px;
    border-radius: 5px 5px 0 0;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    text-align: center;
    z-index: 1000;
  }
}

@media (min-width: 1100px) {
  #scroll-to-top i {
    color: #fff;
    font-size: 22px;
    line-height: 44px;
  }
}

