/*CSS for top navigation bar that is WIP*/
#background {
    width: 100%;
    height: 100%;
}
.navbar {
    padding: 1.5%;
    border: 10px;
    text-align: center;
    position: absolute;
    width: 97%;
    right: 0%;
    top: 0;
    height: 5%;
    background-image: linear-gradient(
    to bottom,
    rgba(26, 29, 163, 0.5) 0%,
    rgba(26, 29, 163, 0.6) 10%,
    rgba(255, 255, 255, 0) 90%,
    rgb(255, 255, 255, 0) 100%
    );
  }

.navbar a{
    font-size: larger;
    text-decoration: none;
    padding: 1%;
    color: white;
}

.MainDiv {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    display: flex;
    text-align: center;
    font-size: 100%;
}