body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #04013b;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 75vh;
}
h1 {
    text-align: center;
    margin-top: 20px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 42px;
    color: #ffcc00;
}
ul {
    list-style-type: none;
    padding: 0;
}
li {
    background-color: #fff;
    margin: 20px;
    text-align: center;
    border-radius: 5px;
    border: 2px solid #000000;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 5px 10px 1px rgba(0, 0, 0, 0.3);
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
}

a {
    text-decoration: none;
    color: #000;
    display: block;
    padding: 25px;
}

img {
    width: 25px;
    height: 25px;
    vertical-align: middle;
    margin-right: 10px;
}

li:hover {
    background-color: #ffcc00;
    color: #fff;
    border-color: #ffcc00;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
