


  body{
            background-color: honeydew; text-align: center;
        }

                table{
				border:2px solid black;
				color:royalblue;
				border-collapse: collapse;
                width: 100%;
                
			}	
		th, td{
            border:2px solid black;
            padding:10px;
            text-align:center;
           
        }
        th{
            background-color: aqua;
            color:red;
            height: 50px;
         }
        
        tr:nth-child(even){
            background-color: gray;
        }
       tr:nth-child(odd){
           background-color: greenyellow;
       }
         tr:hover{
             background-color:honeydew;
         }
         th{
             vertical-align:middle;
         }

       
	