body{
    background-color:beige;
}
div{
    background-color: white;
}
table{
    border: 1px solid black;
    background-color: white;
    width: 100%;
    border-width: 1px;
}
td,th{
    border: 2px solid #000;
    text-align: left;
    height:30px;

}
a{
text-decoration: none;
color: black;
}
a:hover{
    color:orange;
}

th:hover{
    background-color:blanchedalmond;
}
img{
    max-width: 50px;
    max-height: 50px;
}
img:hover{
    transform : scale(5);
}
tr:nth-child(odd) {
  background-color:blueviolet;
  color:white;
}

@media only screen and (max-width: 600px) {
    body {
        background: radial-gradient(circle, rgba(63,94,251,1) 0%, rgba(252,70,107,1) 100%);
    }
}