body{
    background-color: black;
    color: aliceblue;
    text-align: center;
    font-family: ;
}
table, th, td{
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
    border: 3px solid grey;
    padding: 10px;
    color: grey;
    background-color: black;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.trait:hover {
    background-color: #f0e68c !important;
    color: black !important;
    cursor: pointer;
}
h1 {
    animation: fadeInUp 1s ease-out;
}
.t1, .t6{
    background-color: black;
    color: grey;
    font: bold italic 20px serif;
    border-radius: 15px;
    border: 3px solid grey;
}
.t1, .t5, .t7{
    background-color: sandybrown;
    color: brown;
    font: bold italic 20px serif;
    border-radius: 15px;
    border: 3px solid brown;
}

.t2, .t4, .t8, .t10{
    background-color: rosybrown;
    color: saddlebrown;
    font: bold italic 20px serif;
    border-radius: 15px;
    border: 3px solid saddlebrown;
}

.t3, .t9{
    background-color: peru;
    color: lightsalmon;
    font: bold italic 20px serif;
    border-radius: 15px;
    border: 3px solid lightsalmon;
}
img{
    border-radius: 15px;
    width: 300px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    cursor: pointer;
}
.topnav {
  overflow: hidden;
  position: relative;
  z-index: 100; 
}
.topnav #myLinks {
  display: none;  
  background-color: black;
  float: right;
  z-index: 101; 
  border-radius: 15px;
  border: grey solid 3px;
}
.topnav a {
  color: grey;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
  border-radius: 15px;
}
.topnav a.icon {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}
.active {
  background-color: black;
  color: grey;
    border: grey solid 3px;
}