html {
    background-image: url('../res/bg_tsc.jpg');
    background-size: 100%;
    height: 100%;
}

body {
    width: 80%;
    margin: auto;
    background: rgba(32, 32, 32, 0.99);
    color: white;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
  
  .navbar {
    overflow: hidden;
    background-color: #333;
  }
  
  .navbar a {
    float: left;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }


  
  .dropdown {
    float: left;
    overflow: hidden;
  }

  .dropdown.split {
    float: right;
    color: white;
    padding-right: 50px;
  }
  
  .dropdown .dropbtn {
    font-size: 16px;  
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
  }
  
  .navbar a:hover, .dropdown:hover .dropbtn {
    background-color: red;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: rgb(33, 32, 32);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    float: none;
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .dropdown-content a:hover {
    background-color: #3d3c3c;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }

  #main-content {

  flex: 1;
  padding-left: 5%;
  padding-right: 5%;
  }

  footer {
    text-align: center;
    padding-bottom: 10px;
    margin-top: 50px;
    min-height: 15px;
    background-color: #101010;

  }

  p {
    text-align: justify;
  }