body {
    background-color: white;
    background-image: url(unsplash-spiral-bg.jpg);
    background-position: 60% 40%;
    box-sizing: border-box;
}
.navbar {
    box-sizing: border-box;
    position: fixed;
    display: flex;
    top: 0px;
    left: 0px;
    width: 100%;
    background-color: rgb(6, 19, 41);
    color: azure;
    
}
.navbar h3 {
    text-align: left;
    font-size: larger;
    margin: 0;
    width: 100%;
    height: 100%;
    padding: 5px 20px;
}
.navbar-link {
    width: 100%;
    text-align: right;
}
.navbar-link a {
    box-sizing: border-box;
    height: 100%;
    position: relative;
    top: 17.5%;
    border: 2px;
    border-radius: 3px;
    border-style: solid;
    margin: 2px;
    padding: 5px 20px 5px 20px;
    font-size: large;
    text-decoration: solid;
    text-align: center;
    background-color: rgba(32, 94, 218, 0.5);
    border-color: rgba(32, 94, 218, 0.8);
    color: azure;

}
.text-content, .media-content {
    box-sizing: border-box;
    padding: 5px 10px;
    background-color: rgba(6, 19, 41, 0.8);
    color: rgb(240, 242, 246);
    border-radius: 15px;
    width: 95%;
    max-height: 100%;
    min-height: -moz-fit-content;
    min-height: fit-content;
    position: relative;
    left: 2.5%;
    right: 5%;
    top: 200px;
    text-align: center;
    
}
.main-title {
    width: 90%;
    position: relative;
    left: 5%;
    right: 5%;
    font-size: x-large;
    border-style: none;
    border-width: 5px;
    padding: 5px 20px;
}
.flex-container {
    display: flex;
    flex-direction: row;
    max-width: 100%;
    min-width: -moz-fit-content;
    min-width: -webkit-fill-available;
    min-width: fit-content;
    padding: 5px 20px;  
}
.flex-container img, .flex-container video{
    align-self: center;
    max-width: 100%;
    max-height: 200%;
}
#main-desc, #system-arch, #ethics-statement {
    max-width: 25%;
    margin: 0 5px;
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    font-size: large;
    border: 3px;
    border-radius: 3px;
    border-style: solid;
    border-color: azure;
    padding: 5px 20px;
}  
#system-arch {
    max-width: 50%;
}
#system-arch ul {
    text-align: left;
    background-color: rgb(5, 32, 68, 0.85);
    border: 2px;
    border-radius: 15px;
}
#system-arch ul strong {
    color: rgb(194, 255, 250);
}
#main-desc, #system-arch, #ethics-statement h3 {
    font-size: larger;
}
.images, .video {
    flex-direction: row;
    flex-wrap: wrap;
    box-sizing: border-box;
    padding: 5px 10px;
    width: 100%;
    max-height: 100%;
    min-height: -moz-fit-content;
    min-height: fit-content;
    position: relative;
    text-align: center;
}
.images img, .images video {
    max-width: 50%;
    height: -moz-fit-content;
    height: fit-content;
    
}
footer {
    padding: 0px 20px;
    position: fixed;
    border-radius: 3px 3px 0px 0px;
    bottom: 0px;
    color: azure;
    background-color: rgba(105, 118, 117, 0.75);
}
footer a {
    color: aquamarine;
    text-decoration: none;
}

