body {                             
    background-color: #000000;     
    color: #00ff00;                
}                                  
a {                                
    color: #00ff00;                
    text-decoration: none;         
}                                  
                                   
ul {                               
    list-style-type: none;         
}                                  
                                   
li {                               
    font-size: 20px;               
    padding-left: 0.25em;          
    display: flex;                 
    flex-direction: row;           
    width: fit-content;            
    border-bottom: 2px solid #00000000;
}                                  
                                     
li::before {                       
    content: '>';                  
    color: #00ff00;                
    font-family: fantasy;          
    margin-right: 0.5em;           
}                                  
                                   
li:hover {                         
    border-bottom: 2px solid green;
}                     
