body {
    margin: 0;
    width: 100%;
    background-color: black;
    min-width: 320px;
}

.gridContainer {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
}

.container div {
    width: 100%;
}

html {
    scroll-behavior: smooth;
    overflow: none;
}

body::-webkit-scrollbar {
    display: none;
}