/* Reset margin and padding for a consistent layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    background-color: yellow;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Styling for the container */
.hashtag-container {
    text-align: center;
    font-weight: 700;
}

/* Styling the hashtag text */
.hashtag-container p {
    font-size: 2em;
    font-family: Arial, sans-serif;
    color: black;
}
