/// Import stylesheet for pages @use 'page'; // Import fonts @use 'fonts'; // The SCSS stylesheet for my good old website twoexem.com // The license is included in the file LICENSE.txt // If you did not receive a copy of the license with this file, you may download it under https://mit-license.org/ // Copyright © 2024 Milan Mišić (eMail: twoexem@gmail.com) html { height: 100vh; } body { // Body styling section, gives everything a good look text-align: center; justify-content: center; width: 90%; max-width: auto; margin: 2em auto; font: 19px 'Prompt'; letter-spacing: -1px; background-image: url("resources/page_background.jpg"); background-repeat: no-repeat; background-position: top center; background-size: cover; background-attachment: fixed; // Link styling section a:link { color: #00ffff; } a:visited { color: #8ad4ff; } a:hover { color: #ffffff; } } /*main { border: transparent solid 10px; border-radius: 5px; padding: 3px; backdrop-filter: blur(5px) brightness(80%); }*/ // Aligns the heading text in the center header { text-align: center; .subheader { font-style: italic; font-size: 25px; } }