ul{
  color: transparent;
}

ul.multiverse li:hover {
    text-decoration: none;
    color: orange;
  }

a{
  text-decoration: none;
  color: inherit;
}

body{
  background-color: black;
  color: white;
  font-family: serif;
  font-size: 50px
}

button{
border: solid;
border-width: 2px;
background-color: grey;
border-radius: 5px;
font-size: 25px;
font-family: serif;
padding: 10px 30px;
color: white
}

h1{
  text-shadow: 10px 10px 5px #FF0000, 10px 10px 5px #0000FF;
}

h3 {
  text-align: center;
  font-weight: normal;
  letter-spacing: 10px;
  color: black;
}

.find:hover{
 color:orange; 
 text-shadow: 5px 5px 5px #CCCCCC;
 animation: fadein 3s ease-in;
}

#write{
  text-align: center;
  font-weight: normal;
  letter-spacing: 10px;
  color: orange;
  text-shadow: 5px 5px 5px #CCCCCC;
}




@keyframes fadein {
  0% {opacity: 0.0;}
  25% {opacity: 0.3;}
  50% {opacity: 0.6;}
  75% {opacity: 0.8;}
  100% {opacity: 1;}
}

