/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container Styling */
.container {
    text-align: center;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Heading Styling */
h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

/* Links Styling */
.links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.share-link {
    text-decoration: none;
    color: #fff;
    background-color: #0073e6;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.share-link:hover {
    background-color: #005bb5;
}

/* Responsive Design */
@media (max-width: 600px) {
    h1 {
        font-size: 1.5rem;
    }

    .share-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}