*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body{
    background-color: #343453;
}

.heading{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    color: white;
    letter-spacing: 4px;
}
.grid{
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
table{
    background-color: rgb(30, 31, 34);
    border-spacing: 0;
}
td{
    border: 1px solid rgb(73, 73, 73);
    border-radius: 3px;
    width: 10px;
    height: 10px;
}
span{
    color: #222
}
#start, #reset, #random{
    margin: 2rem;
    padding: 1rem;
    box-shadow: 0px 0px 10px #000;
    color: white;
    background-color: #111;
    transition: all 1s ease;
}
#start:hover, #reset:hover, #random:hover{
    cursor: pointer; 
    background-color: rgb(114, 0, 25);
}
td.dead{
    background-color: transparent;
}
td.alive{
    background-color: rgb(95, 255, 2);
    border-radius: 10px;
}
.control-button{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
}
