html {
    position: relative;
    min-height: 100%;  
}

body {
     margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}  

.TopBar {
    background-color: rgb(192,0,0);
    background-image: linear-gradient(rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.25) 25%, rgba(0,0,0,0) 70%);
    color: white;
    height: 40px;
    align-items: center;
    display: flex;
    align-items: center;
    justify-content: left;
    padding-left: 10px;
    box-shadow: 0px 3px #CCCCCC;
}

.BottomBar {
    background-color: rgb(192,0,0);
    background-image: linear-gradient(rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.25) 25%, rgba(0,0,0,0) 70%);
    color: white;
    height: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}

.MenuColors {
    background-color: rgb(192,0,0);
    background-image: linear-gradient(rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.25) 25%, rgba(0,0,0,0) 70%);
    width: 120px;
}

main {
    flex: 1;
    margin-top: 40px;
}

.navbartext {
    color: #BBBBBB;
    text-decoration: none;
}

.active {
    color: white;
}

.container {
    margin-top: 20px;
}

  .sitename {
    color: darkgray;
    font-size: larger;
    text-decoration: none;
    margin-left: 10px;
  }

  .sitename:hover {
    text-decoration: none;
    color: white;
  }