/* 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: black;
  color: blue;
  font-family: Times;
  
}
  /* unvisited link */
a:link {
  color: red;
}

.button {
  text-decoration: none;
  color: rgb(0,0,0);
  background: rgb(0,0,0);
  padding: 0px 0px;
  border-radius: 0px;
  font-weight: normal;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.rotate {
  animation: rotation 8s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

.glow-button:hover {
  color: rgb(60,255,200);
  box-shadow: 0 10px 20px rgb(60,255,200);
}

.custom {
  cursor: url(wood.png), auto;
}

/* visited link */
a:visited {
  color: green;
}

/* mouse over link */
a:hover {
  color: hotpink;
  
}

/* selected link */
a:active {
  color: blue;
}
b:hover {
  color: yellow;
}
h1 {
  text-shadow: 2px 2px 5px red;
}

b:active {
  color: hotpink;
}
h2 {
  text-shadow: 4px 4px 6px hotpink;
}
#div1 {
  background: url(img_flower.jpg);
  background-size: contain;
  background-repeat: no-repeat;
}
