.oldTestamentText,
.newTestamentText {
    font-size: 17px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.testamentBlock {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 5px 5px 15px;
    border-radius: 100px;
    font-weight: bold;
    box-shadow: 0 0 3px hsl(0deg 0% 100%);
    background-color: hsl(0, 0%, 90%);
    color: black;
    text-decoration: none;
}

.testamentBlock:hover .tb_projectNumber {
    background-color: black;
    color: white;
}

.tb_projectNumber {
    padding: 5px 10px;
    border-radius: 100px;
    font-weight: bold;
    background-color: hsl(0, 0%, 80%);
}

.testamentBlocks {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 10px;
}

.testamentBlockName {
    flex-shrink: 1;
    margin-right: 5px
}

.contentContainer {
    width: 1000px;
    margin: auto;
    min-height: calc(100vh / var(--bodyZoomRatio) - var(--bodyHeaderHeight) - var(--addressBarHeight));
    background-color: white;
    box-shadow: 0 0 3px hsl(0, 0%, 80%);
    overflow: hidden;
}

.contentContainerBody {
    padding: 10px;
}

.contentContainerBody>* {
    margin-bottom: 10px;
}

.contentContainerBody>*:last-child {
    margin-bottom: 0px;
}

.explainPage {
    font-weight: bold;
    font-size: 17px;
    text-align: center;
    box-shadow: 0 0 3px hsl(0, 0%, 80%);
    padding: 20px 0;
}

.testamentTextIcon {
    margin-right: 5px;
    font-size: 20px;
}