.superContainer {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100vw;
    background: linear-gradient(to right, #d7d2cc 0%, #304352 100%);
    z-index: 0;
    overflow-y: scroll;
}

.mainLanding {
    background-image: url("./static/schema.jpeg");
    background-size: cover;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100vw;
    height: 90vh;
    border-bottom: 1px solid white;
}

.navbar {
    width: 100vw;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    color: blanchedalmond;
    border-bottom: 2px solid #d7d2cc;
    height: 8vh;
    box-shadow: 1px 1px 25px 1px lightblue;
    z-index: 1;
}

.li-item {
    display: flex;
    width: 9vw;
    margin: 1vw;
    border-radius: 2px;
    font-family: 'Courier New', Courier, monospace;
    font-size: x-large;
}


.linkDiv {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-family: 'Courier New', Courier, monospace;
    font-size: larger;
    font-weight: 200;
}

.linkDiv a {
    text-decoration: none;
    color: rgb(240, 215, 215);
}

.linkDiv a:hover {
    cursor: pointer;
}

.li-item:hover {
    cursor: pointer;
}



.container {
    display: flex;
    flex-direction: column;
    background-color: inherit;
}

.imageContainerContainer {
    display: flex;
    flex-direction: column;
    width: 50%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.imageContainer {
    width: 280px;
    height: 280px;
    border-radius: 140px;
    overflow: hidden;
}

.imageContainer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}

.introTextContainer {
    display: flex;
    flex-direction: row;
    width: 50%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.introText {
    display: flex;
    background: linear-gradient(to right, #aeaca979 0%, #b6b8b98d 100%);
    justify-content: center;
    flex-direction: column;
    color: rgb(240, 215, 215);
    width: 75%;
    height: 75%;
    padding: 20px;
    font-family: cursive;
    font-weight: 100;
    font-size: larger;
}


.footerContainer {
    height: 20vh;
    width: 100vw;
    display: flex;
    background-color: inherit;
}

.footerLeft {
    display: flex;
    flex-direction: column;
    width: 50vw;
    height: 100%;
    color: white;
    padding: 20px;
    justify-content: flex-start;
    border-right: 1px solid white;
}

.footerList {
    height: 20vh;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.footerRight {
    display: flex;
    flex-direction: column;
    width: 50vw;
    height: 100%;
    color: white;
    padding: 20px;
    justify-content: flex-start;
}

.fl-item {
    width: 70%;
    font-family: 'Courier New', Courier, monospace;
    font-size: medium;
}

.fl-item a {
    color: white;
    text-decoration: none;
}

.fl-item a:hover {
    cursor: pointer;
}

body {
    margin: unset;
    overflow: scroll;
}


table {
    width: 80%;
    border-collapse: collapse;
    margin: 20px auto;
    background-color: #ffffff78;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: 'Courier New', Courier, monospace;
}

h1 {
    margin: 0;
}

p {
    margin: 0 0 10px 0;
}

th,
td {
    border: 1px solid #dee2e66e;
    padding: 8px;
    text-align: left;
    vertical-align: top;
}

th {
    background-color: #f1f1f182;
    font-weight: bold;
    text-transform: uppercase;
}

td ul {
    margin: 0;
    padding-left: 20px;
}

td ul li {
    margin-bottom: 5px;
}

a {
    color: whitesmoke;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}