.container{
     display: grid;
    grid-template-rows: repeat(7,1fr);
    
    gap: 10px;
    
}

label{
    width: 70px;
    display: inline-block;
}

button{
    width: 100px;
}

body{
background-color: black;
color: white;
}

