<style>




ul{
  margin-top: 0cm;
  margin-bottom: 0cm;
  list-style-type: none;
  width: 100%;
  /* border:10px solid #d83c0c; /* kleurtje van de omranding hele lijst */ */
  border-style: double; /* dubbele rand */
  border-radius: 30px; /* hoe rond zijn de hoeken? */
  margin: 10px; /* afstand omranding - pagina */
  background-color: rgb(0, 38, 255);
  padding: 5; /* afstand tussen knopjes en de omranding */

  
}

ul li{

    float:left;
    display: block;
    border:5px solid #013c5ee1;
    border-style: double;
    border-color: #e2df33;
    border-radius: 10px;
    padding:20px;
    background-color: rgb(97, 167, 224);
    /* [Ctrl]+[Shift]+[A] ->toggel comment */
    margin-left: 1cm; /* #afstand tussen de knopjes */
    text-decoration: none;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: white;
    text-shadow: 5px 5px 5px #e7dbdb;
    text-align: center;
    font-weight: bold;
}
ul li a:hover {
    background-color: #e2df33;   /* Kleur bij hover */
}

body{
  overflow: hidden; /* Hide scrollbars */

  background: url('../../pics/earth.png');
  /* background-size: cover; */
  background-color: #e2df33;
} 
</style>