/* Weird Stylesheet for the firs initial page on the LDS SW LLC Page */
/* Default Body Style */
body {
    background-color: black;
    color: white;
    text-align: center;
}

/* Default Text Style */
h1 {
    color: white;
    padding: 3px;
    size: 24px;
}

/* Default Body Text Style */
p {
    color: white;
    padding: 1px;
    font-size: 12px;
}
p2 {
    color: grey;
    background-color: rgb(31, 31, 31);
    font-size: 18px;
}

/* Red Left Border, Purple Text Color, No Text Decoration */
.rlb_ptc_ntd {
    color: purple;
    text-decoration: none;
    border-left: 5px, red, solid;
}

/* Blue Left Border, Blue Text Color, No Text Decoration, Gray Background Color */
.blb_btc_ntd_gbc {
    align-self: center;
    color: blue;
    text-decoration: none;
    border-left: 5px, blue, solid;
    padding-left: 2px;
    margin: 2px;
    width: fit-content;
    background-color: grey;
}

/* General Text Container, Gray Background, White Text */
.gtc_gbc_wtc {
    background-color: grey;
    padding: 10px;
    color: white;
    border: rgb(77, 77, 77), 8px, solid;
    width: calc(fit-content + 8px);
    height: calc(fit-content + 3px);
}