/* Add some style 

.child {
    position: inline-block;
    top: 10%;
    transform: translateY(20%);

} */
/*
.grid-container {
    display: grid;;
    
    margin-left: 10%;
    border-color: black;
    border: 3px solid;
  }

  /*
div[class^="grid-col-"], div[class*="grid-col-"] {
    grid-column: 1;
}*/
/*
div[class^="grid-pixel-"], div[class*="grid-pixel-"] {
    grid-template-columns: repeat(auto-fit, minmax(5px, 1fr));
    align-items: center;
    text-align: center;
    border: 1px solid;
    border-color: rgb(169,169,169);
}

.parent {
    width: 640px;
    height: 640px;
    
    position: fixed; /*Can also be `fixed`
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    /*Solves a problem in which the content is being cut when the div is smaller than its' wrapper:
    max-width: 100%;
    max-height: 100%;
    overflow: auto; 
  }
*/

  :root {
    --column--number: 'auto'
  }

  .wrapper {
    margin-top: 25px;
    margin-left: 125px;
    border: 85px solid red;
    border-radius: 25px;
    border-bottom-width: 100px;
    width: min-content;
  }

  .grid-container {
    display: grid;
    grid-template-columns: var(--column--number);
    background-color: silver;
    padding: 0px;
    border: 1px solid black;
    box-shadow: 0 0 0 25px  red;
    border-radius: 25px;
    width: 960px;
    height: 640px;

  }

  .title {
    display: block;
    text-align: center;
    color: goldenrod;
    font-family: cursive;
    font-weight: bold;
    font-size: 50px;
    margin-top: -75px;
  }

  .wheel {
    float: none;
    margin-top: 10px;
    height: 75px;
    width: 75px;
    background-color: white;
    border-radius: 50%;
    
  }

  .left {
    float: left;
    
  }

  .right {
    float: right;

    
  }

  .grid-item {
    margin: 0px;
    border: 0px solid gray;
    min-width: 5px;
    min-height: 5px;
  }

  .lightUp {
    background-color: black;
  }

  .button-left {
    display: inline-block;
    width: 5%;
    margin-left: 300px;
    text-align: center;
    color: goldenrod;
    font-family: cursive;
    font-weight: bold;
    font-size: 20px;
    border: 15px solid red;
    border-radius: 25px;
    background-color: red;
    margin-top: 25px;
    cursor: default;
  }

  .button-right {
    display: inline-block;
    width: 5%;
    margin-left: 540px;
    text-align: center;
    color: goldenrod;
    font-family: cursive;
    font-weight: bold;
    font-size: 20px;
    border: 15px solid red;
    border-radius: 25px;
    background-color: red;
    margin-top: 25px;
    cursor: default;
  }