body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: white;
    text-align: center;
    margin: 0;
}

h1 {
    padding: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    padding: 20px;
}

.tile {
    background-color: #1e1e1e;
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.2s, background-color 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
}

.tile:hover {
    background-color: #292929;
    transform: translateY(-5px);
}

.tile img {
    width: 64px;
    height: 64px;
    margin-bottom: 10px;
}

.tile span {
    font-size: 14px;
}