* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Iosevka", "Fira Code", "JetBrains Mono", monospace;
    background-color: #282828;
    color: #ebdbb2;
    overflow-x: hidden;
}

.app {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #1d2021;
}

::-webkit-scrollbar-thumb {
    background: #504945;
}

::-webkit-scrollbar-thumb:hover {
    background: #665c54;
}
