html {
    width: 55%;
    margin: auto;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
}

#linklist a {
    text-decoration: none;
    color: inherit;
}

#linklist {
    display: flex;
    gap: 1rem;
}

.clickbox {
    flex: 1;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 20px;
    border-color: black;
    border-style: dashed;
    transition: border-color 0.25s ease-in-out;
}

.clickbox:hover {
    border-color: orange;

}

.boxlist {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}


.boxed-text {
    flex: 1;
    min-width: max-content;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 20px;
    border: 1px solid black;
}

.boxed-text li {
    max-width: 30ch;
}

.text-center {
    text-align: center;
}

p {
    text-align: justify;
    hyphens: auto;
    word-wrap: break-word;
}

footer {
    margin-top: 6rem;
}

table {
    width: 100%;
    border-collapse: collapse;
}

tr {
    transition: all ease-in-out 150ms ; 
}

tr:nth-child(even) {
    background-color: lightgray;
}

tr:hover {
    background-color: lightslategray;
    color: aliceblue;
}



thead {
    text-align: left;
    border-bottom: 2px solid black;
}
