body {
    background-color: black;
    font-family: "Albert Sans", sans-serif;
}

header {
    padding: 1.5rem;
}

pre {
    display: none;
}

#amns-logo {
    margin: 1rem;
    width: 8rem
}

#background-image {
    background-image: url("https://www.amns.in/storage/pages/November2022/8FZkvtWi4I7CtqVgmHvk.webp");
    background-size: cover;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    filter: blur(1px);
}

.catalogs-section {
    display: flex;
    flex-direction: column;
}

.catalogs-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 2rem;
    font-weight: 700;
    align-self: center;
}

.catalogs-content {
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    flex-wrap: wrap;
}

.single-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 20rem;
    width: 20rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0.8rem;
}

.single-product:hover {
    background-color: #e52726;
    transition: all 1s ease;
}

.single-product-icon {
    height: 5rem;
    width: 5rem;
    opacity: 1;
}

.single-product-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
}

.social-links {
    display: flex;
    list-style: none;
    margin: 0px;
    padding: 0px;
}

svg {
    margin-left: 2rem;
    height: 2rem;
    width: 2rem;
}


@media screen and (width<=650px) {
    .catalogs-title {
        font-size: 1.5rem;
    }

    svg {
        height: 1.2rem;
        width: 1.2rem;
    }
}

/* width */
::-webkit-scrollbar {
    width: 5px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #888; 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555; 
  }