body {
    background-color: white;
    /*background-image: linear-gradient(to right bottom, rgba(0, 113, 178, .3), rgba(0, 113, 178, 1));*/
    font-family: 'Source Sans Pro', sans-serif;
    width: 100%;
    min-height: 100lvh;
    margin: 0;
    padding: 0;
} 

.base {
    display: grid;
    grid-template-columns: 80rem; /*fit-content(1166px);*/
    grid-template-rows: auto;
    gap: 0;
    align-items: center;
    justify-content:center;
}

.base-border {
    border: 2px solid rgba(72, 72, 71, 0.3);
    border-radius: 5px;
}

.base-content {
    width: 100%;
}

button {
    width: 6rem;
    height: 1.5rem;
    border: 1px solid rgba(72, 72, 71, 0.3);
    color: black;
    border-radius: 10px;
    background-color: rgba(0, 128, 0, .3);
}

button:hover {
    background-color: rgba(0, 113, 178, 1);
    border: 2px solid rgba(0, 113, 178, 1);
    border-radius: 10px;
}

.d-none {
    display: none;
}

.fullscreen-content {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto;
    gap: 0px;
    align-items: center;
    justify-content:center;
    margin-top: 5rem;
}

.js-close {
    display: inline-block;
    background-color: red;
}

*[class^='content-'] {
    overflow-x: auto;
}

*[id^='content-'] {
    grid-area: e;
}

.d-block {
    display: block;
    text-align: center;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mr-1 {
    margin-right: 1rem;
}

.mr-2 {
    margin-right: 5rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.ml-2 {
    margin-left: 5rem;
}

.modal {
    background: rgba(72, 72, 71, .7);
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
    overflow: hidden;
}

.modal-content {
    background: rgba(245, 250, 255, 1);
    padding: 2rem;
}

.fullscreen-close-button {
    width: 5rem;
    align-self: flex-end;
}

.fullscreen-button-div {
    width: max-content;
    padding: 5px;
    background-color: rgba(245, 250, 255, 1);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.login-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 2rem 2rem 4rem auto;
    gap: 10px;
    align-items: center;
    grid-template-areas:
    "a b"
    "c d"
    "e e"
}

.login-box {
    background-color: white;
}

.login-container {
    display: grid;
    grid-template-columns: 35rem 1fr 35rem;
    grid-template-rows: 13rem;
    grid-template-areas:
    ". a .";
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.d-login-error {
    display: grid;
    grid-row: 1fr;
    align-items: center;
    justify-items: center;
    padding: 1rem;
    background-color: rgb(231, 28, 106, .3);
}

textarea {
    border: none transparent;
    outline: none;
    resize: none;   
}

.error-container {
    display: grid;
    grid-template-columns: minmax(13rem, 30rem);
    grid-template-rows: repeat(auto, auto);
    gap: 10px;
    padding: 10px;
    background-color: white;
}