body {
  background-color: black;
  color: white;
  font-family: Times;

}

h1 {text-align: center;}

.image {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.arrow {
  display: block;
  margin-left: 100px;
  margin-right: auto;
}


#blink {
            font-size: 25px;
            font-weight: bold;
            color: white;
            transition: 0.5s;
        }
        
p {text-align: center;}          
ul {
  padding-left: 5px;
  text-align: center;
}
a {text-align: center;} 


/* unvisited link */
a:link {
  color: blue;
}

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

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

/* selected link */
a:active {
  color: red;
  
  
}