body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    position: relative;
}

.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.center-content {
    text-align: center;
}

p {
    font-size: 24px;
    margin: 16px 0;
}

.big-text {
    font-size: 128px; /* You can adjust the font size as needed */
    font-weight: bold; /* Optionally, make it bold */
}

.share-button {
    position: absolute;
    top: 10px; /* Adjust the top position as needed */
    right: 10px; /* Adjust the right position as needed */
    font-size: 24px; /* Adjust the icon size as needed */
    color: #000; /* Black color */
    cursor: pointer;
    padding: 10px; /* Add padding around the button */
}

