body {
    background: #0a0a0a;
    color: white;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
}

#link-grid {
    display: grid;
    /* This creates the 3-column layout */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1000px;
}

.link-card {
    /* This creates the rounded rectangle */
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #00d4ff;
    font-weight: bold;
    transition: 0.3s;
}

.link-card:hover {
    transform: translateY(-5px);
    border-color: #00d4ff;
    background: #222;
}
