* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #333;
    height: 100vh;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; 
}

.container {
    display: flex;
    flex-direction: column;         
    justify-content: center;        
    align-items: center;            
    height: 100vh;
    
}

.box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    border: solid rgb(72, 187, 72);
    width: 25rem;
    height: 25rem;
}

.box .subbox {
    display: flex;
    border: solid rgb(72, 187, 72);
    color: white;
    justify-content: center;
    align-items: center;
    font-size: 6rem;
    cursor: pointer;
}

#reset {
    color: black;
    font-size: 2rem;
    margin-top: 2rem;
    padding: 0.5rem 1rem;
    background-color: #90ee90;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}
.container .info{
    display: flex;
     color: black;
    font-size: 2rem;
    margin-bottom: 2rem;
    padding: 0.5rem 1rem;
    background-color: #90ee90;
    border: none;
    border-radius: 5px;
    
}
#name{
    margin-bottom: 5rem;
    border: solid;
    padding: 0.5rem 1rem;
    color: #90ee90;
    font-size: 5rem;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; 
}

