*{
    margin: 0 ;padding: 0 ;border: 0 ;  box-sizing:border-box ;
}
body{
    background-color: rgb(2, 192, 2);
    padding:20px 80px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;

}
h1{
    font-weight: normal;
    text-align: center;
    margin: 40px;
    color: white;
}
section.center{
    display: flex;
    justify-content: center;
}
nav#horz_menu1{
    border: 4px solid blue;

}
nav#horz_menu1 > ul{
    list-style: none;
    text-align: center;
}

nav#horz_menu1 > ul > li{
    border: 2 px solid yellow;
    margin: 4px;
    display: inline-block;
    position: relative;

}
nav#horz_menu1 a{
    
    display:block; width: 100%; height: 100%;
    padding: 8px 16px;
    text-decoration: none;

}
nav#horz_menu1 a:hover{
    background-color: #ffc;

}
nav#horz_menu1 > ul > li:hover>ul.submenu{
    display: block;
}
nav#horz_menu1 ul.submenu{
    position: absolute;
    top: 100%; left :0px;
    width: 180px;
    display: none;
    padding-top: 10px;
}
nav#horz_menu1 ul.submenu li{
    background-color: darkgreen;
    list-style: none;
    margin: 5px 0px;

}
table {
    border-collapse: collapse;
    width: 100%;
  }
  
  th, td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
  }
  
  th {
    background-color: #f2f2f2;
  }
  
  tr>:hover {
    background-color: #030202;
    color: white;
  }
  tr>th:hover {
    background-color: #f2f2f2;
    color: black;
  }
  footer{
    margin-top: 2px;
    margin-bottom: 50px;
    width: 80vw; height:70px;
    
    border-radius: 10pt;
    
}
footer>nav{
    margin-top: 25px;
}
footer>nav>a{
    border: solid black 2px;
    color: black;
    background-color: rgb(255, 255, 255);
    padding: 10px 10px;
    border-radius: 15px;
}
footer>nav>a:hover {
    background-color: black;
    color: white;
    transform: rotate(3deg);
}