/* base.css */

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Windows-like font */
  background-color: #ffffff; /* Default background color */
  overflow: hidden; /* Prevent scrolling */
}

/* Misc styles */
#os-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/backgrounds/desktop1.jpg'); /* Replace with your image */
  background-size: cover;
  z-index: -1;
  opacity: 0.7;
}