main {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cont {
    background-color: black;
    color: white;
    text-align: center;
    animation: summon 2s;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    white-space: pre-wrap;
    word-wrap: break-word;
    max-width: 100vw;
}
main h1 {
    color: white;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    white-space: pre-wrap;
    word-wrap: break-word;
    max-width: 100vw;
    margin-bottom: 10px;
}

main h2 {
    display: flex;
    flex-direction: column;
    color: white;
    white-space: pre-wrap;
    word-wrap: break-word;
    max-width: 100vw;
    margin-bottom: 10px;
}

.copy {
    cursor: copy;
    color: lightskyblue;
}

.copytext {
    color: lightgreen;
    display: none;
}


@keyframes summon {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 100;
    }
}