* {
    scrollbar-width: thin;
    scrollbar-color: #f97316 transparent;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

main {
    height: calc(100vh - 60px);
    overflow-y: auto;
    scroll-behavior: smooth;
    margin-top: 60px;
}

body {
    background-color: #0d1117;
    color: #eee;
    font-family: 'JetBrains Mono', monospace;
}

h1, .nameTitle {
    color: #f97316;
    font-size: 4rem;
    font-weight: bold;
}

.highlight {
    color: #f97316;
    font-weight: bold;
}

@media (max-width: 1100px) {
    html, body {
        height: calc(100dvh - env(safe-area-inset-bottom) - env(safe-area-inset-top));
    }

    main {
        height: calc(100vh - 40px);
        margin-top: 40px;
    }

    h1, .nameTitle {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}

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

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #f97316;
    border-radius: 10px;
    border: 2px solid #0d1117;
}

::-webkit-scrollbar-button {
    height: 10px;
    background-color: transparent;
    display: block;
}
