/* styles.css */

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F8F8F6;
}

.container {
    text-align: center;
    padding: 100px;
}

h1 {
    font-family: "Unna", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 80px;
    padding: 0;
    margin: 0;
    color: #343a40;
  }


  h2 {
    font-family: "Inter", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-size: 18px;
    font-style: normal;
    margin: 0;
    color: #FFFFFF;
  }

  p {
    font-family: "Inter", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-size: 26px;
    font-style: normal;
    color: #343a40;
  }

  .kumar {
    font-family: "Kumar One", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 48px;
  }

  .grid-container {
    display: grid;
    grid-template-columns: repeat(9, 50px);
    grid-template-rows: repeat(9, 50px);
    gap: 0;
    border: 2px solid #343a40;
}

.grid-cell {
    width: 50px;
    height: 50px;
    border: 1px solid #343a40;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn {
    margin-top: 50px;
    width: 120px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    border: 3px solid #343a40;
    background-color: #343a40;
}
  