*{
  margin: 0%;
  padding: 0;
}

.container {
  width: 100%;
  height: 100vh;
  background-color: maroon;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.header-container {
  color: white;
  display: flex;
  font-size: 4rem;
  width: 100%;
  position: relative; 
}

.left-item {
  position: absolute;
  top: 10%;
  left: 20px;
  font-size: 2.8rem;
}

.center-item {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.body-container{
  display: flex;
  flex-direction: row;
}

.weather-container {
  color: white;
}

.temperature {
  font-size: 5rem;
}

.demographic {
  font-size: 3rem;
}

.time-date {
  font-size: 2rem;
}

nav {
  height: 100px;
  margin: 6rem;
}

.search-area {
  padding: 1rem 1rem;
  outline: none;
  border: none;
  color: black;
  background-color: whitesmoke;
  font-size: 2.3rem;
  width: 98%;
}

nav button{
  background-color: white;
  border: none;
  outline: none;
  margin-top: 1rem;
  font-size: 2.1rem;
  cursor: pointer;
  padding: 0.5rem;
}
.region-name{
  font-size: 0.7em;
}
.city-name {
  font-size: 0.6em;
}

.footing-container{
  color: darkred;
  background-color: darkred;
  display: flex;
  font-size: 3rem;
  width: 100%;
  position: relative; 
}