/* style.css
//
// Copyright (C) 2025 Eldar Omerovic
// This file is part of wgsl-quaternionic-raymarcher.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// SPDX-License-Identifier: AGPL-3.0-or-later
*/

/* Basic reset to remove default browser styles */
body, html {
    margin: 0;
    padding: 0;
    /* Hide scrollbars that might appear */
    overflow: hidden; 
}

/* Make the canvas take up the entire browser window */
#gpuCanvas {
    display: block;
    width: 100vw;
    height: 100vh;
    background-color: #111; /* A dark fallback color */
}
