/* Reset layout and make page full height */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #1E1E1E;
}

/* Center the .box on the screen */
.container {
  display: grid;             /* enable grid layout */
  place-items: center;       /* centers horizontally + vertically */
  height: 100vh;             /* full viewport height */
  width: 100vw;              /* full viewport width */
}

/* Weather box styling */
.box {
  background-color: #2E2E2E;
  color: #E0E0E0;
  height: 250px;
  padding: 40px 60px;
  border-radius: 20px;
  text-align: center;
  font-family: "Segoe UI", Arial, sans-serif;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

/* Typography styles */
.box h1 {
  margin: 0 0 10px;
  font-size: 4rem;
}

.box p {
  margin: 5px 0;
  font-size: 1.2rem;
}


#inp {
  width: 270px;
  padding: 8px;
  border: 2px solid #ffffff;
  background-color: #2E2E2E;
  color: #ffffff;        /* user-typed text color */
  outline: none;
  font-size: 19px;
  border-radius: 6px;    /* optional, looks smoother */
}

/* 🎨 Change the placeholder text color */
#inp::placeholder {
  color: #fff;        /* light gray placeholder text */
  opacity: 1;            /* ensure it's not too transparent */
}


button{
  height: 40px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}