i {
    font-family: 'Times New Roman', Times, serif;
}

body {
    background-color: #797979;
    font-family: fantasy
}

.center {
    display: inline-block;
    justify-content: center;
    text-align: justify;
    align-items: baseline;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 42px;
    width: 800px;
    overflow: auto;
    line-height: 200%;
    background-color: rgb(255, 255, 255);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* TOOLTIPS */
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
    cursor: pointer;
}
.tooltiptext {
    visibility: hidden;
    opacity: 0;
    transition: opacity .42s;
    width: 205px;
    background-color: rgb(255, 255, 255);
    color: #000000;
    text-align: center;
    border: 2px solid #000000;
    padding: 2px 8px;
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 65%;
    margin-left: -102.5px
}
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #797979;
    color: rgb(0, 0, 0);
    text-align: right;
}