*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: productSans;
}
@font-face {
    font-family: ProductSans;
    src: url(../scrollbar/fonts/Product\ Sans\ Regular.ttf);
}
body{
    width: 100vw;
    height: 100vh;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#scroll_container{
    width: 100vw;
    height: 80vh;
    display: flex;
    align-items: center;
    column-gap: 2vw;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 2vw;
}
.containers{
    min-width: 20vw;
    height: 50vh;
    border: 2px solid white;
    border-radius: 1vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   transition: transform 0.3s ease;
}
#scroll_container::-webkit-scrollbar{
    display: none;
}
h1{
    color: white;
    font-size: 5vw;
}
.containers:hover>h1{
    filter: drop-shadow(0px 0px 15px white);
}
.containers:hover{
    box-shadow: none;
}
.buttons{
    width: 5vw;
    height: 5vw;
    border-radius: 50%;
    border: 2px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
}
#buttons_containers{
    width: 20vw;
    height: 20vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    cursor: pointer;
}
.arrows{
    color: white;
    font-size: 2vw;
}
.buttons:active{
    transform: scale(0.9);
    box-shadow: 0px 0px 10px white;
}
.buttons:active>.arrows{
    -webkit-text-stroke: 1px white;
    color: transparent;
}