/* body info */
body {
    background-color:darkslategray;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: beige;
}

#phone-digits {
    font-size: large;
}
/* each number option is its own grid placement */
#grid-container {
    margin-top: 200px;
    display: grid;
    padding: 5px;
    text-align: center;
    grid-template-columns: auto auto auto auto auto auto auto auto auto auto;
    color: darkslategray;
    background-color: beige;
    
}
#question {
    font-size: larger;
}

/* what the ball looks like on screen */
#ball{
    position: relative;
    width:50px;
    height:50px;
    background-color:rgb(240, 198, 205);
    border-radius:50%;
}
/*what button looks like on screen*/
/* buttons separate to hide the yes/no at the beginning of the program */
.button {
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: beige;
    color: darkslategray;
    padding: 10px 20px;
    cursor: pointer;
    text-align: center;
    width: 10vw;
    font-size: 20px;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12);
  }

/* animation now in JS to get the position! */
/* .animate{
  width: 100%;
  height: 300px;
  position: absolute;
  
} */

/* how the ball will be animated to move across top before being dropped down
.animate{

    animation-duration: 2s;
    animation-name: slideacross;
    animation-iteration-count: infinite;
    animation-direction: alternate;
  }

/*doing the animation*/
/* @keyframes slideacross {
    /*from means at the very beginning (0%)*/ 
    /* from {
      margin-left: 100%;
        
    } */
    /*to means to the end of the duration (100%)*/
    /* to {
      margin-left: 0%;
    } */
/* } */