body{
    margin: 0;
    font-family: Arial;
    padding-bottom: 50px;
    padding-top:50px;
}

form {
    display: flex;
    flex-direction: column;
    width:20%;
    row-gap: 10px;
}
h2, h1{
    text-align: center;
}

.form-container {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items:center
}
table {
    border: 1px solid black;
    border-collapse: collapse;
    width: 50%


}
table td, table th{
    text-align: center;
    padding:20px;
    border:1px solid black;

}
table tbody tr{
    cursor: pointer;
    transition: background-color 0.5s;
}
table tbody tr:hover{
    background-color: #dadada;
}
.table-container {
    width: 100%;
    display:flex;
    align-items: center;
    justify-content: center;
}
.special-space{
    padding-top: 20px;
}
.on-li a{

    text-decoration: none !important;
    color: #ffff;
}