/* latin-ext */
@font-face {
    font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/bebasneue/v10/JTUSjIg69CK48gW7PXoo9Wdhyzbi.woff2) format('woff2');
    unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
  /* latin */
  @font-face {
    font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/bebasneue/v10/JTUSjIg69CK48gW7PXoo9Wlhyw.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }

  
  body {
    background-color: #1b263b !important;
  }
.container {
    width: 100%;
    height: auto;
    margin: 0 auto;
    background-color: #1b263b;
    color: #fff;
    padding: 30px;
    border-radius: 15px;
}

#grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-gap: 10px;
    width: 100%;
    height: auto;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    text-align: center;
}

#shuffle-btn {
    width: 100%;
    border-radius: 5px;
    background-color: #1E4C7D;
    color: #fff;
    padding: 15px;
    border-color: transparent;
    margin-top: 15px;
    font-weight: 700;
    font-size: 16px;
}

#shuffle-btn:disabled {
    background-color: #1E4C7D;
    opacity: 0.6;
    cursor: not-allowed;
    color: #ccc;
}

#minas {
    width: calc(50% - 5px);
    float: left;
    background-color: #030811;
    border-radius: 5px;
    height: 55px;
    margin-bottom: 5px;
    text-align: center;
    padding: 5px;
    margin-right: 5px;
    margin-bottom: 15px;
}

#validade {
    width: calc(50% - 5px);
    float: left;
    background-color: #030811;
    border-radius: 5px;
    height: 55px;
    text-align: center;
    padding: 5px;
    margin-left: 5px;
    margin-bottom: 15px;
}

#minas-text {
    font-size: 10px;
    margin: 0;
}

#minas-value {
    font-size: 16px;
    margin: 0;
}

#validade-text {
    font-size: 10px;
    margin: 0;
}

#validade-value {
    font-size: 16px;
    margin: 0;
}

@media (max-width: 437px) {
    .container {
        width: 100%;
    }
}

@media (min-width: 438px) {
    .container {
        max-width: 427px;
        width: 100%;
    }
}