@font-face {
  font-family: 'Outfit'; /* This is the name you'll use in your CSS */
  src: url('./Font-Outfit/static/Outfit-Regular.ttf') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Merienda'; /* This is the name you'll use in your CSS */
  src: url('./Font-Merienda/static/Merienda-Regular.ttf') format('woff2');
  font-weight: normal;
  font-style: normal;
}


body, html {
  font-family: 'Outfit', sans-serif; /* Fallback to sans-serif if custom font fails to load */
  height: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  background: #171717;
}

.container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
}

.group {
  margin-bottom: 30px;
  width: 100%; /* Set a specific width if you want to limit the maximum width */
}

.group-title {
  color: #D6D5A8;
  font-size: 48px;
  margin: 10px 0;
  font-family: Merienda;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: center;

}

.rectangle {
  background-color: #444444;
  color: #EDEDED;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s;
  border-radius: 2px;
  font-weight: bold ;
  font-size: 24px;
}

.rectangle:hover {
  filter: invert(100%);
}










