html {
    width: 100%;
    height: 100%;
}


.result {
    width: 100%;
    height: auto;

}

.result {
    display: flex;
    flex-direction: column;
    margin: 20px;
    align-items: center;
}

.result table {
    width: 80%;
    height: auto;
    border: #4678a1 2px solid;
    border-collapse: collapse;
}

.result table thead tr th {
    border: #dddddd 1px solid;
    text-align: center;
    padding: 0 0 0 10px;
    background-color: #4678a1;
    color: white;
}

.result table tbody tr td {
    border: #dddddd 1px solid;
    text-align: center;
    padding: 0 0 0 10px;
}

td a {
    text-decoration: none;
    color: #6091ba;
}

.result table tbody tr:hover {
    transition: background-color 0.2s ease-in-out;
    background-color: rgba(100, 150, 200, 0.3);
}

td a:hover {
    transition: color 0.2s ease-in-out;
    color: #4678a1;
}

.footer {
    width: 100%;
    margin-top: 50%;
    height: 10%;
    display: block;
    color: blue;
    font: 12px;
    text-align: left;
    align-items: center;
}

.footer a {
    font-size: 18px;
    text-decoration: none;
    color: gray;

}

.footer a:hover {
    font-size: 20px;
    transition: color 0.3s ease-in-out;
    color: orange;

}