
header{
    border:color(from color srgb r g b);
    background-color: #01072d;
    color: rgb(30, 231, 231);
    font-size: 30px;

}

body {
    font-family: Arial;
    text-align: center;


    background-image: url("https://images.unsplash.com/photo-1507874457470-272b3c8d8ee2");
    background-size: cover;
    background-position: center;
    color: white;
}


table {
    margin: 50px auto;
    border-collapse: collapse;
    background-color: rgba(255, 255, 255, 0);
}


th, td {
    border: 1px solid white;
    padding: 15px;
    transition: 0.3s;
}


th {
    background-color: #0816db;
}


td:hover {
    background-color: #ff4c4c;
    transform: scale(1.1);
    cursor: pointer;
}