body {
    margin: 0;
    height: 100vh;
    color: #fff;
    background-color: #222;
    display: flex;
    justify-content: center;
    align-items: center;
}

a {
    text-decoration: none; /* Removes the underline */
    color: inherit; /* Makes the link the same color as the surrounding text */
    cursor: text; /* Changes the pointer hand back to a text cursor (optional) */
}

.message {
    cursor: pointer;
    min-height: calc(1.4em + 25px);
    font-size: 1.4em;
    font-weight: bold;
    font-family: monospace;
    background: #2d2d2d;
    padding: 10px 16px 16px 16px;
    border-radius: 6px;
    margin: 0px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
}

.first {
    font-weight: normal;
    font-size: 1.3em;
    background-color: #222;
    padding: 0px 0px 0px 0px;
}

.copied {
    color: #59a4cf;
    font-size: 1.2em;
    font-family: monospace;
    visibility: hidden;
}

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

img {
    max-width: 100%;
    max-height: 100%;
}
