@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Poppins;
}
body
{
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.hello{
    width: 1800px;
}
::-webkit-scrollbar{
    display: none;
}