body {
    background-color: black;
    color:white;
}
a {
    color:pink;
}
#nav{
text-align: center;
    list-style-type: none;
    position: relative;
    top:200px;
    padding:0px;
    background-color: white;
    height:300px;
    border:5px ridge pink;
    z-index: -1;
}
#nav li {
     display:inline;
    margin-left:200px;
    font-size:40px;
    position: relative;
    top:100px;
}
#nav li:first-child {
    margin-left:0px;
}
#fairy {
    width:400px;
    z-index: 999;
   position: absolute;
    top:240px;
    left:120px;
}
#home {
    background-color: white;
    width:100px;
    height:30px;
    font-size: 15px;
    position: absolute;
    left:20px;
    top:180px;
    border:2px solid pink;
    border-radius:5px;
    
}