/* ===== Reset & Base Layout ===== */
/**, *::before, *::after {*/
/*  box-sizing: border-box;*/
/*}*/

body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  overflow-x: hidden;
  transition: background-color 0.4s ease;
}

/* ===== Container ===== */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 10;
}
