/* Shifoo's Solitude by Bobby -------------------------- Shifoo's Solitude is a Web Dungeon located beyond the Dark Hollows of the Endless Information SuperHighway — a dark yet tranquil place where all questions end, curiosity begins, the mind awakens, and one's journey begins anew in the solitude of a serene mind! -------------------------- File: welcome.css Description: CSS for the welcome page (exclusively) Date: Jul 11, 2023 Last Modified: Jul 11, 2023 */ @import url("https://fonts.googleapis.com/css2?family=Handlee&family=Poppins:wght@400&family=Share:wght@700&display=swap"); @import url(audio.css); @import url(button.css); @import url(glitch.css); :root { --button-height: 0.5rem; --button-color: #edd; color-schema: dark; font-family: "Handlee", cursive; } * { margin: 0; padding: 0; color: white; } #cover-video { position: fixed; top: 0; left: 0; height: 100%; width: 100%; object-fit: cover; z-index: -100; } #cover-wrapper { position: fixed; top: 0; left: 0; min-width: 100%; min-height: 100%; height: 100%; width: 100%; z-index: -99; } #welcome-content { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 100vh; background: repeating-linear-gradient( 0deg, #0e0d0e77 25%, #0e0d0e77 50%, #17181977 50%, #17181977 75% ); background-size: 10px 10px; } .cwrapper { text-align: center; } p { margin: 0; padding: 0; } .small { font-size: 0.8rem; margin: 0.5rem 0; color: #aaa; } #welcome-button { font-family: "Poppins", sans-serif; font-size: 1.5rem; padding: 0.5rem 1rem; border-radius: 0.5rem; transition: all 0.2s ease-in-out; margin-top: 10rem; } @media only screen and (max-width: 600px) { .glitch { font-size: 5rem; } }