/* Global Styles */
@font-face {
  font-family: "MyCustomFont";
  src: url("/font.ttf") format("truetype");
}



body {
  background: linear-gradient(135deg, #2c2c2c, #3a3a3a);
  color: #f5f5f5;
  font-family: "MyCustomFont", sans-serif;
  line-height: 1.7;
  margin: 0;
  padding: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

/* Link Styles */
a {
  color: #ff5252;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
  color: #ff7b7b;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

a:visited {
  color: #e57373;
}
