html {
    scroll-behavior: smooth;
}

.spacy {
    width: 100%;
    height: 7em;
}

.arabic {
    color: #083a59;
    text-align: center;
    font-size: 6vw;
    font-weight: bold;
    font-family: 'Noto Naskh Arabic', serif;
}

.trans-arabic {
    color: #000;
    text-align: center;
    font-size: 1em;
    font-family: 'Noto Serif Display', serif;
}

.scrolling-container {
    position: fixed;
    bottom: 7%;
    right: 5%;
    background: #198754;
    border-radius: 1em;
    overflow: hidden;
    align-content: center;
    transition: 0.5s;
    visibility: hidden;
    opacity: 0;
  }

  .scrolling-container img {
    width: 3em;
    height: 3em;
}

  .scrolling-container.active {
    visibility: visible;
    opacity: 1;
  }

  .scrolling-container:hover {
    background-color: #083a59;
  }

@media screen and (max-width: 768px) {
    .scrolling-container img {
        width: 2.5em;
        height: 2.5em;
    }
}