* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: linear-gradient(135deg, rgb(136, 21, 223), #c71585); /* Fuchsia-to-purple gradient for entire page */
    color: #fff; /* White text for contrast */
    line-height: 1.5;
}

header {
    background: linear-gradient(90deg, #c71585, rgb(226, 234, 222)); /* Matching fuchsia-to-purple gradient */
    color: #fff;
    text-align: center;
    padding: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 3em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.container {
    max-width: 1000px;
    margin: 50px auto;
    text-align: center;
    padding: 20px;
}

p {
    font-size: 1.4em;
    color: #fff; /* White for contrast on gradient background */
    margin-bottom: 50px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Subtle shadow for readability */
}

.button-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2x2 grid */
    grid-template-rows: repeat(2, auto);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 60px;
    background: linear-gradient(45deg, #c71585, #ff69b4); /* Fuchsia-to-hot-pink buttons */
    color: #fff;
    text-decoration: none;
    border-radius: 4px; /* Sharp edges */
    font-size: 1.8em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-height: 140px;
    min-width: 300px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    animation: pulse 2s ease-in-out infinite; /* Pulsing animation */
    transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
}

.button:hover {
    background: linear-gradient(45deg, #a60f6e, #e55a9f); /* Darker fuchsia gradient */
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    animation-play-state: paused; /* Pause pulse on hover for focus */
}

/* Pulsing animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }
}

@media (max-width: 768px) {
    .button-grid {
        grid-template-columns: 1fr; /* Stack vertically */
        grid-template-rows: auto;
        gap: 20px;
    }

    .button {
        padding: 25px 50px;
        font-size: 1.5em;
        min-width: 100%;
        min-height: 120px;
    }

    .container {
        padding: 15px;
    }

    h1 {
        font-size: 2.4em;
    }

    p {
        font-size: 1.2em;
    }
}