* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #263b6a;
}
.top {
  display: flex;
}
svg {
  fill: #a0d585;
  margin-left: 5px;
}
.convertor-container {
  margin-top: 10px;
  display: flex;
  align-items: center;
  margin-right: 100px;
}
.convertor {
  font-size: 1rem;
  font-weight: 600;
  background-color: inherit;
  color: black;
  padding: 5px 10px;
  border: none;
}
.search {
  margin-top: 10px;
  width: 600px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  background-color: #6984a9;
  border-radius: 5px;
}
.city-input {
  margin-left: 10px;
  width: 500px;
  background-color: inherit;
  border: none;
  outline: none;
  color: #a0d585;
}
.main {
  color: #eefabd;
  display: grid;
  grid-template-columns: 65% 1fr;
  height: calc(100vh - 50px);
  gap: 50px;
}
.left {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 10px;
}
.temp {
  display: grid;
  grid-template-areas:
    "name name icon"
    "temperature temperature icon ";
  gap: 10px;
  align-items: center;
  padding-left: 80px;
}
.city-name {
  grid-area: name;
}
.city-icon {
  grid-area: icon;
  width: 150px;
  justify-self: center;
}
.temperature {
  grid-area: temperature;
  font-size: 2rem;
  font-weight: 800;
}
.today {
  background-color: #6984a9;
  border-radius: 10px;
  margin: 0 40px;
}
.today-title {
  margin-top: 20px;
  margin-left: 25px;
  font-size: 1.2rem;
  font-weight: 600;
}
.today-forecast {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 20px;
}
.today-card {
  border-right: 2px solid #a0d585;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.today-card:last-child {
  border-right: none;
}
.current-conditions {
  background-color: #6984a9;
  margin: 0 40px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-size: 1.1rem;
}
.current-conditions p {
  margin: 20px 60px;
}
.active {
  color: #a0d585;
}
.week-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 20px;
  margin-left: 25px;
}
.week {
  background-color: #6984a9;
  border-radius: 10px;
  margin: 0 10px;
}
.weekly-forecast {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}
.week-card {
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-bottom: 2px solid #a0d585;
  gap: 20px;
  margin: 0px 30px;
}
.week-card:last-child {
  border: none;
}
