*{
    margin: 0;
    padding:0;
    font-family: Lemon;
    box-sizing: border-box;
}
/*Font Lemon*/
body{
    height: 100vh;
    display: grid;
    place-items: center;
    background: url(Pokeball.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
table{
    width:600px;
    box-shadow:-1px 12px 12px -6px rgba(0,0,0,0.5);
}
table, td, th{
    padding:28px;
    border: 0.5px solid red;
    border: collapse;
    text-align:center;
}
td{
    font-size:20px;
}
th{
    background-color: Black;
    color: white;
}
tr:nth-child(odd){
    background-color: #FF0000;
    color: white;
}
tr:nth-child(odd):hover{
    background-color: white;
    color: Black;
    transform: scale(1.3);
    transition:transform 350ms ease-in;
}
tr:nth-child(Even){
    background-color:white;
    color: Black;
}
tr:nth-child(Even):hover{
    background-color: #FF0000;
    color: white;
    transform: scale(1.3);
    transition:transform 350ms ease-in;
}