body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    display: flex;
    gap: 20px;
}

.link-box {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    border-radius: 10px;
    padding: 15px 30px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s ease;
}

.link-box:hover {
    background-color: #e0e0e0;
}
