html {
  
  background-size: 300px 300px;
  color: MediumVioletRed;
  font-family: helvetica;
}
a:link { color: DarkSlateBlue;}
a:visited { 
    color: DarkMagenta;
}
body {
  background-image: url("Assets/checkertranslucent.gif");
  background-size: 300px 300px
  background-color: Gainsboro;
}
span {
  background-color: pink;
}
* {
  cursor: url("Assets/cursor.png"), auto;
}
a, img, button {
  cursor: url("/Assets/cursor2.png"), pointer;
}
body.dark-mode {
    background-color: gray ;
    background-image opacity: 
    color: indigo;
    
}
#title {
  height: 100px;
  width: 550px;
  margin-left: 450px;
  margin-bottom:20px;
  font-size: 50px;
  font-family: georgia;
}
#container {
  height: 500px;
  width: 550px;
  border: pink 7px groove;
  background-image: url("Assets/woh.avif");
  margin:auto;
}
#div1 {
  height: 100px;
  width: 500px;
  border: none;
  margin: auto;
}
#div2 {
  height: 20px;
  width: 500px;
  border: none;
  margin-left: 200px;
  margin-right: auto;
  margin-top: 300px;
}
#button1 {
  background-color: pink;
  border: none;
  color: white;
  padding: 5px 10px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  transition-duration: 0.4s;
}
#button1:hover {
  background-color: red;
  color: white;
}
#button1::after {
  content: "And here's a button!";
}
#button1:hover::after {
  content: "bro f u >:C...";
}
#darkModeToggle {
  background-color: pink;
  border: none;
  color: white;
  padding: 5px 10px;
  text-align: center;
  font: helvetica bold;
  display: inline-block;
  font-size: 16px;
  transition-duration: 0.4s;
  margin-top: 5px;
  margin-left: 5px;
}
#darkModeToggle:hover {
  background-color: darkmagenta;
  color: white;
}