body {
    background-color: black;
    color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

a {
    color: #b3b3b3;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #fff;
}

/* List style */
ul.bg-gray-800 {
    list-style-type: none;
}