body {
    background-color: rgba(0, 0, 0, .1);
    height: 100vh;
}

.bungee-regular {
    font-family: "Bungee", sans-serif;
    font-weight: 400;
    font-style: normal;
  }




.bi:hover {
    transform: scale(1.1);
    border-radius: 50%;
    color: black;
    cursor: pointer;
  }

  .scrolling-wrapper {
    display: flex;
    overflow-x: auto;
    padding: 10px;
    white-space: nowrap;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; 
    width: 100%;
}

.scrolling-wrapper::-webkit-scrollbar {
    display: none; 
}

.scrolling-wrapper > div {
    display: inline-block;
    margin: 0 10px;
    scroll-snap-align: center;
}

@media only screen and (min-width: 600px) {

    .container{
        height: 100%;
    }

    .scrolling-wrapper 
    {
        display: inline;
        width: unset;
    }
    
}