:root {
  --background-color: #1B1F2E;
  --background-light: #4B5475;
  --text-color: #DAE0E1;
}

* {
  box-sizing: border-box;
  font-family: sans-serif;
  padding: 0;
  margin: 0;
}

html, body {
  width: 100%;
  height: 100%;
  background-color: var(--background-color);
}

.selectHeader {
  width: 100%;
  height: 20%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.selectHeader h1 {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-color);
  font-weight: 700;
  margin-bottom: 20px;
}

.selectHeader .selectContainer {
  display: flex;
  justify-content: center;
}

.selectHeader .selectContainer i {
  font-size: 1.1rem;
  color: var(--text-color);
}

.selectHeader .selectContainer select {
  width: 200px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  background-color: transparent;
  color: var(--text-color);
}

.selectHeader .selectContainer select:focus, .selectHeader .selectContainer select:active {
  border: none;
  outline: none;
}

.selectHeader .selectContainer select option {
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-width: 0;
  color: var(--text-color);
  background: var(--background-color);
}

.wheatherInfo {
  width: 100%;
  height: 80%;
}

.wheatherInfo .tempInfo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text-color);
}

.wheatherInfo .tempInfo i {
  font-size: 8rem;
}

.wheatherInfo .tempInfo p {
  font-size: 0.9rem;
}

.wheatherInfo .tempInfo h2 {
  font-size: 4rem;
}

.wheatherInfo .othersInfo {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}

.wheatherInfo .othersInfo .itemCard {
  background-color: var(--background-light);
  padding: 10px;
  width: 30%;
  margin: 10px 0;
}

.wheatherInfo .othersInfo .itemCard p {
  font-size: 1.2rem;
  color: var(--text-color);
  text-align: center;
}

.wheatherInfo .othersInfo .itemCard .itemTitle {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wheatherInfo .othersInfo .itemCard .itemTitle i {
  font-size: 2rem;
  color: var(--text-color);
}

.wheatherInfo .othersInfo .itemCard .itemTitle p {
  font-size: 0.8rem;
  color: var(--text-color);
  text-align: center;
  margin-left: 5px;
}