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

body {
  padding-bottom: 1rem;
}

.hamburger {
  position: absolute;
  top: 26px;
}

.weather-container {
  color: white;
  align-items: center;
  margin-bottom: 2rem;
}

.main-container {
  position: relative;
  padding: 200px 38px 66px 38px;
}

.icon-day-or-night > img {
  width: 200px;
  position: absolute;
  right: 50px;
  top: 20px;
}

.today {
  padding: 10px;
  padding-top: 50px;
}

.temperature {
  font-size: 6.25rem;
}

.cityToday {
  font-size: 2.125rem;
}

.weather-description {
  font-size: 1.375rem;
}

.container {
  margin: 0 auto;
  max-width: 450px;
}

.sun-container {
  display: flex;
  color: white;
  justify-content: center;
  font-size: 1.375rem;
  margin-top: 14px;
}

.sunrise,
.sunset {
  width: 50%;
}

.button {
  position: absolute;
  bottom: -51px;
  right: 50px;
}

.weather-forecast {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  padding: 0px 38px;
}

.weekly-weather {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.weekday,
.temperature-icon,
.temperature2 {
  padding: 30px 0px;
  font-size: 1.25rem;
}

.otherCity {
  width: 50 vh;
  text-transform: uppercase;
  padding-bottom: 20px;
  gap: 30px;
  display: flex;
  text-align: center;
  padding: 30px;
  flex-wrap: wrap;
  flex-direction: column;
}

.city {
  font-weight: bold;
  font-size: 20px;
}
.city-weather {
  padding: 30px;
  border: 1px solid black;
  border-radius: 5px;
}
@media only screen and (min-width: 768px) {
  .temperature-icon {
    align-items: center;
  }

  .otherCity {
    margin-top: 50px;
    justify-content: center;
    flex-direction: row;
    gap: 70px;
  }

  .city {
    justify-content: center;
  }
}
