* {
    box-sizing: border-box;
  }
  
  /* Create two equal columns that floats next to each other */
  .column_menu {
    float: left;
    width: 100%;
    /* max-width: 100%; */
    padding: 10px;
    height: auto;
    max-height: 1000px;
    /* Should be removed. Only for demonstration */
  }
  
  .column_competenta {
    float: left;
    width: 100%;
    padding: 10px;
    height: auto;
    max-height: 1500px;  
    
    
  
  }
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  body {
    background-color: lightgrey;
    
  }
  
  ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #2fdef5;
    
  }
  
  li {
    float: left;
    
  }
  
  li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  li a:hover {
    background-color: #16da78;
    
  }
  
  .image_center {
  
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: auto;
    height: auto;
    max-width: 1000px;
    max-height: 400px;
    
  }
  
  .judecatorie_green {
    /* float: left; */
    background-color: lightcyan;
    text-align: center;
  }
  
  .judecatorie_blue {
    /* float: left; */
    background-color: aquamarine;
    text-align: center;
  }
  
  
  li b {
    
    color: blue;
    text-align: center;
    
  }
  
  li c {
    color: rgb(5, 5, 0);
    text-align: center;
  }