.button{
    background-color: rgb(224, 224, 224);
    margin: 20px;
  
    border-radius: 5px;
    border: solid 2px rgb(60,60,60);
    padding: 15px;
    font-family: 'Oswald', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    font-weight: bold;
    width: 200px;
    box-shadow: 2px 2px 4px rgba(97, 97, 104, 0.3);
    transition: all 0.4s ease;
    color: black;
    outline: none
    
  
}
.button:hover{
    cursor: pointer;
    background-color: white;
}
.buttonGroup{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
   
}
.input {
    outline: none;
    border-bottom: solid 2px rgb(206, 206, 206);;
    color: rgb(206, 206, 206);
    border-radius: 15px;
    background: transparent;
    padding: 15px;
    text-align: center;
    font-size: 18px;
    margin-top: 20px;
   
  }
