* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  min-height: 100vh;
  background-image: linear-gradient(to right top, #000000, #120f13, #181a21, #17262d, #183232);
}

.root {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px;
}

.heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #18e5e5;
  text-align: center;
}

.sub-heading {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1A1A1A;
}

/* Location container styles */
.location-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.loc-input {
  width: 100%;
  height: 48px;
  margin-bottom: 8px;
  padding: 12px;
  border-radius: 4px;
  border: none;
  background-color: #F2F2F2;
  font-size: 16px;
  color: #1A1A1A;
}

.search-btn {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;

  transition: all 0.3s ease 0s;
  background-image: linear-gradient(-60deg, rgb(9, 182, 162), rgb(107, 248, 231), rgb(9, 182, 162));
  font-weight: bold;
  border: none;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 0 5px #60d5c4;
  text-shadow: 0 1px 0 #135c81;
  cursor: pointer;
}

.search-btn:hover {
  border: 0 solid #c0c1c6;
  color-scheme: light;
  color: inherit;
  text-decoration: inherit;
}

/* Air info container styles */
.air-info {
  background-color: #FFFFFF;
  border-radius: 4px;
  padding: 24px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
}

.air-quality {
  font-size: 64px;
  font-weight: 700;
  color: #1A1A1A;
}

.air-quality-status {
  font-size: 24px;
  font-weight: 700;
  color: #1A1A1A;
}

.arr {
  font-size: 24px;
  font-weight: 700;
  color: #1A1A1A;
}

.component-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 16px;
  margin-top: 24px;
}

.component-names {
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
}

.component-val {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #1A1A1A;
}

/* Footer styles */
 footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  color: #1A1A1A;
  font-size: 16px;
}


.bg-dark p {
  font-size: 20px;
}