body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    text-align: center;
}

.container {
    text-align: center; /* Center align the buttons horizontally */
    max-width: 800px;
    margin: 0 auto; /* Adjusted margin to move container down */
    padding: 20px;
    box-sizing: border-box;
}

.box-group {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.box {
    width: calc(50% - 40px); /* Adjusted width to accommodate more margin */
    margin: 20px; /* Increased margin between the buttons */
    background-color: #222;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.3s ease;
}

.left-taper {
    background: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
}

.right-taper {
    background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
}

.button:hover {
    box-shadow: 
        0 0 20px rgba(255, 255, 0, 0.7), /* Yellow glow on the left */
        0 0 40px rgba(255, 255, 0, 0.5), 
        0 0 60px rgba(255, 255, 0, 0.3), 
        0 0 20px rgba(128, 0, 128, 0.7), /* Purple glow in the center */
        0 0 40px rgba(128, 0, 128, 0.5), 
        0 0 60px rgba(128, 0, 128, 0.3), 
        0 0 20px rgba(255, 0, 0, 0.7), /* Red glow on the right */
        0 0 40px rgba(255, 0, 0, 0.5), 
        0 0 60px rgba(255, 0, 0, 0.3);
}


.red-button:hover {
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.7), /* Red glow */
                0 0 40px rgba(255, 0, 0, 0.5), /* Red glow */
                0 0 60px rgba(255, 0, 0, 0.3); /* Red glow */
}

h2 {
    font-size: 24px;
    padding: 20px;
    margin: 0;
}

a {
    text-decoration: none;
    color: #fff;
}

.footer {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 10px;
    color: #fff;
    font-size: 14px;
}
