/* Reset styles */
@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");

/* Global styles */
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

/* Base styles for html and body */
html,
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  height: 100%;
  background: linear-gradient(180deg, #000000, #1a1a1a, #333333);
  background-attachment: fixed;
}

/* Focus styles for accessibility */
button:focus-visible,
a:focus-visible {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}

/* Link styles */
a {
  text-decoration: none;
  color: inherit;
}

/* Image styles */
img {
  max-width: 100%;
  height: auto;
}
