*{
    margin: 0;
    padding:0;
    box-sizing: border-box;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
#greetText{
   background-color: #EAEFEF;
   font-size: 1.5rem;
   font-weight: 1rem;
   height: 10vh;
   display: flex;
   justify-content: center;
   align-items: center;
}

.container{
    display:flex;
 justify-content: center;
 margin-top: 80px;
}

.boxes{
    width:100px;
    height: 100px;
    padding: 20px;
    margin:20px;
    border: 1px solid #EAEFEF;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
}

#name{
    padding: 8px;
    border: 1px solid #EAEFEF;
}

#btn{
    background-color: #EAEFEF;
    font-size: 1rem;
    padding:6px 13px;
     border: 1px solid #EAEFEF;
     margin-left: 5px;
     cursor: pointer;
}