/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #120045 ;
  color: #EB00FF;
  font-family: "hardpixel"; 
  src: url("Hardpixel.OTF")
  /*
Source - https://stackoverflow.com/a
Posted by R. Schifini
Retrieved 2026-01-27, License - CC BY-SA 3.0
*/

  
}
div{
  font-size: 40px;
  color: #EB00FF;
  text-shadow: 0px 0px 30px #EB00FF,0px 0px 30px #EB00FF,0px 0px 30px white,0px 0px 10px #553300,0px 0px 10px #553300;


 
}
@font-face {
font-family: 'hardpixel'; /* Buraya bir isim verin */
src: url('Hardpixel.OTF'); /* .ttf dosyasının yolunu ekleyin */
}

h2 {
font-family: 'Times'; /* Yukarıdaki 'deneme' yazısını burada tekrar kullanın */
}

