.hidden {
    display: none;
}

.content-open {
    position: fixed;
    justify-self: center;
    z-index: 3000;
    background-color: white;
    min-height: 600px;
    width: 700px;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 15px;
    top: 80px;
}

.title {
    max-width: 600px;
    line-break: anywhere;
    font-size: xx-large;
}

.subtitle {
    font-size: medium;
}

.paragraph {
    text-align: justify;
    hyphens: auto;
}

#ct_btClose {
    float: right;
    cursor: pointer;
    border: none;
    border-radius: 100px;
    height: 40px;
    width: 40px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

#ct_btClose:hover {
    background-color: rgb(249, 59, 59);
    color: white;
}