html {
    display: flex;
    justify-content: center;
    height: 100%;

}
body {
    background-color: #111111;
    color: #a6b5edc7;
    font-family: 'Lucida Console', Monaco, monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 800px;
}

ul {
    list-style: none;
    padding: 0;
}

li>div {
    display: flex;
    justify-content: center;
}

a {
    text-decoration: none;
    color: #b7e3f0; 
    transition: color 0.5s ease;
}

a>h4::before, a>h4::after {
    content: '✮⋆˙'; 
    color: transparent;
    transition: all 0.6s ease;
}

a h4:hover::before, a h4:hover::after {
    color: #b7e3f0; 
}
