div.pageTitle {
    font-size: 25px;
    font-variant: small-caps;
    color: rgb(50, 50, 50);
    margin: 2rem auto;
    width: 100%;
    text-align: center;
}

a.srLinkStyle {
    font-variant: small-caps;
    text-underline-offset: 3px;
    font-weight: normal;
    color: green;
}

div.dimScreen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 5;
    font-size: small;
}

div.centeredMessage {
    align-items: center;
    justify-content: center;
    position: fixed;
    background-color: rgb(240, 240, 240);
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    padding: 1rem;
    border-radius: 5px;
    border: 1px solid gray;
}

div.centeredMessage:hover {
    background-color: white;
}

button.closeButton {
    font-variant: small-caps;
    cursor: pointer;
    width: 150px;
    height: 50px;
    font-size: large;
    text-align: center;
}

button.closeButton:hover {
    background-color: #dbf5d6;
}

a.emptyLink {
    text-decoration: underline;
    cursor: pointer;
    color: blue;
}

button.stripeButton {
    background-color: transparent;
    border: 0;
    opacity: 0.8;
    padding: 0;
}