/*gold*/

p {
    font-size: 16px;
}
.game-container-gold {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 80px 50px 60px;
    border: 5px solid #eebf00;
    background-color: rgb(238, 191, 0); 
    max-width: 70%;
    margin-left: auto;
    margin-right: auto; 
}

.game-number-gold {
    position: absolute;
    background-color: rgb(238, 191, 0);
    width: 50px;
    height: 50px;
    font-size: 2.7em;
    color: white;
    text-align: center;
}


.game-number-goty {
    position: absolute;
    background-color: rgb(238, 191, 0);
    width: 20%;
    height: 6%;
    font-size: 2.7em;
    color: white;
    text-align: center;
}

.collapsible-gold {
    background-color: rgb(224, 108, 0);
    color: white;
    cursor: pointer;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.5em;
    grid-row: 4 / 5;
    grid-column: 1 / 2;
    text-align: center;
    font-weight: bold;
  }
  
  .content-gold {
    padding: 0 20px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    font-size: 1em;
    text-align: center;
}

    /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
    .active, .collapsible-gold:hover {
        background-color: #c08000;
      }

/*blue*/

.game-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 100px 50px 60px;
    border: 5px solid #0000ff;
    background-color: blue;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
    
}


.game-art {
    grid-row: 1 / 2;
    grid-column: 1 / 2; 
}
.game-number {
    position: absolute;
    background-color: #4094FF;
    width: 50px;
    height: 50px;
    font-size: 2.7em;
    color: white;
    text-align: center;
}


.game-title {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    color: white;
    font-size: 32px;
    text-align: center;
    font-style: italic;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-info {
    grid-row: 3 / 4;
    grid-column: 1 / 2;
    text-align: center;
    background-color: aliceblue;
    align-self: center;
    font-weight: bold;
}

.content {
    padding: 0px 5px;
    text-align: center;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    font-size: 1em;
}

.content-pic {
    background-size: 50%;
}
.collapsible {
    background-color: #4094FF;
    color: white;
    cursor: pointer;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.5em;
    grid-row: 4 / 5;
    grid-column: 1 / 2;
    text-align: center;
    font-weight: bold;
  }
  
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
  .active, .collapsible:hover {
    background-color: #b9d7ff;
  }
  
@media screen and (width <= 1400px) {
.game-title{
    font-size: 28px;
}

.game-info{
    font-size: 16px;
}

.content {
    font-size: 16px;
}

.content-gold {
    font-size: 16px;
}

@media screen and (width <= 800px) {

    .game-title{
        font-size: 24px;
    }

    .game-info{
        font-size: 16px;
    }

    .game-container {
        max-width: 100%;
    
}
.game-container-gold {
    max-width: 100%;
}}}