@font-face {
  font-family: 'Manrope-Regular';
  src: url('Manrope-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Manrope-Bold';
  src: url('Manrope-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

html {
  height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin: 0;
  font-family: 'Manrope-Regular', sans-serif; /* Use 'Manrope-Regular' for other text */
  font-size: 16px; /* Set a base font size */
}

h1 {
  text-align: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 2rem; /* Adjust the font size for headings */
}

h1 img {
    width: 32px;
    height: 32px;
}

.title {
    font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
    body {
        padding: 16px;
    }

    .center-text {
        text-align: center;
    }
}

.title {
  font-family: 'Manrope-Bold', sans-serif; /* Use 'Manrope-Bold' for the title */
  color: var(--Black, #000);
  leading-trim: both;
  text-edge: cap;
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: -0.64px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  text-indent: 0;
}

.build-number {
  font-family: 'Manrope-Regular', sans-serif; /* Use 'Manrope-Regular' for build number */
  color: var(--Black, #000);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  display: inline-flex;
  align-items: flex-end;
  gap: 10px;
  margin: 0;
  text-indent: 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 100px);
    grid-template-rows: repeat(4, 100px);
    gap: 0;
}

.grid.grid-9 {
    grid-template-columns: repeat(3, 100px);
    grid-template-rows: repeat(3, 100px);
    gap: 0;
}

.grid.grid-4 {
    grid-template-columns: repeat(2, 100px);
    grid-template-rows: repeat(2, 100px);
    gap: 0;
}

.box {
    width: 100px;
    height: 100px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shape-svg {
    width: 100%;
    height: 100%;
}

.triangle {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 100px solid black;
}

.button-container {
  text-align: center;
  margin-top: 10px;
 /* display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center; */
}

.button {
  width: auto; /* Allow buttons to adjust width as needed */
  max-width: 200px; /* Set a maximum width for buttons */
  font-family: 'Manrope-Bold', sans-serif; /* Use 'Manrope-Bold' for buttons */
  background-color: #3b72ff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
  border-radius: 32px;
  transition: background-color 0.3s;
}

.button.disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

.button:disabled:hover {
  background-color: #cccccc;
  cursor: not-allowed;
  box-shadow: none;
}

.button:hover {
  background-color: #3b72ff;
  box-shadow: 0 10px 25px rgba(61, 116, 255, 0.25); /* Add box-shadow on hover */
}

.footer {
  text-align: center;
  margin-top: 10px; /* Add space above the footer */
}
