You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

42 lines
573 B

body{
background-color: antiquewhite;
}
h1{
font-size: 50px;
}
p{
font-size: 20px;
}
table{
background-color: rgb(29, 6, 233);
border: 3px solid black;
border-radius: 20px;
padding: 5px;
margin: 20px;
}
td{
border: 1px solid black;
border-radius: 25px;
height: 50px;
width: 50px;
background-color: white;
}
td:hover{
background-color: rgb(80, 80, 80);
}
button{
background-color: azure;
font-size: 20px;
border-color: blue;
border-radius: 3px;
}
button:hover{
background-color: lightblue;
}