footer {
    background-color: #161519 !important;
    position: fixed;
    bottom: 0;
    width:100%
}

html {
    background-color: #28262e;
    height: 100%;
}

hr {
    height: 2px;
    background-color: #d5e3d6;
    border: none
}

* {
    margin: 0;
    padding: 0;
    text-align: center;
    font-family: sans-serif;
    font-size: 1.05em;
    color: #d5e3d6
}

h2 {
    font-size: 1.6em;
}

p {
    text-align: left;
    margin-left: 1em;
    margin-right: 1em;
}

[data-tooltip]:hover::after {
    display: block;
    position: absolute;
    content: attr(data-tooltip);
    border: 2px solid #1f1d23;
    border-radius: 5px;
    color: #d5e3d6;
    background: #28262e;
    padding: .25em;
    animation: fadeInAnimation ease-in .2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

body {
    background-color: #28262e;
    height: auto;
}
  
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}

div {
    animation: fadeInAnimation ease-in 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

button {
    background: 0 0;
    border: none;
    padding: 0;
    cursor: pointer;
}

.aniCollapsible {
    width: 80%;
    text-align: left;
    font-size: 16pt;
}

.collapsible:after {
    font-size: 13px;
    color: #fff;
    float: right;
    margin-left: 5px
}

.content {
    padding: 0 18px;
    overflow: hidden;
    transition: max-height .2s ease-out
}

.grid {
    display: grid;
    grid-auto-columns: minmax(0, 1fr);
    grid-template-areas:
        'tank stock plants'
        'tank stock test';
    gap: 5%;
    justify-items: center;
    margin-left: 5%;
    margin-right: 5%;
}

.gridChild {
    border-radius: 5px;
    background-color: #1f1d23;
    width: 100%;
    height: 100%;
}

.headerLeftBorder {
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: #d5e3d650;
}

#Test {
    grid-area: test;
}

#Tank {
    grid-area: tank;
}

#Stock {
    grid-area: stock;
}

#Plants {
    grid-area: plants;
}

.projects {
    height: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    justify-items: center;
    margin-left: 15%;
    margin-right: 15%;
    margin-top: 20px;
    margin-bottom: 20px;
    gap: 35px;
}

.project {
    border-radius: 5px;
    background-color: #1f1d23;
    width: min(400px, 100%);
    height: 250px;
}

.projlabel {
    font-size: 300%;
    color: #1f1d23;
    position: absolute;
    top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-text-stroke: 2px #d5e3d6
}
.projimg {
    border-radius: 5px;
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    animation: fadeInAnimation ease-in 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

li {
    text-align: left;
    margin-left: 4em;
}

ul.navbar {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #1f1d23;
}

li.navbar {
    float: left;
    margin-left: 0;
    text-align: center;
}

li.navbar a:hover {
    background-color: #161519;
}

a.navbar {
    display: block;
    padding: 10px;
    background-color: #1f1d23;
    color: #d5e3d6;
    text-decoration: none;
}

#video {
    width: 70%;
    display: flex;
    border-style: solid;
    border-width: 2px;
    background-color: #d5e3d6;
    border-radius: 2px;
    background: 0 0;
    overflow-y: hidden;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;
}

.vjs-default-skin .vjs-volume-control {
    display: none !important;
}

.vjs-default-skin .vjs-volume-panel {
    display: none !important;
}

.vjs-default-skin .vjs-control-bar {
    background-color: #28262e
}

.vjs-default-skin.vjs-fade-in,
.vjs-default-skin.vjs-fade-out {
    visibility: visible !important;
    opacity: 1 !important;
    transition-duration: 0s !important
}

.vjs-default-skin {
    color: #d5e3d6
}

.vjs-default-skin .vjs-big-play-button {
    border-color: #d5e3d6;
    background: #28262e
}

.vjs-default-skin .vjs-volume-level,
.vjs-default-skin .vjs-play-progress,
.vjs-default-skin .vjs-slider-bar {
    background: #d5e3d6
}