:root {
  /* To be adjusted */
  --primary-color: black;
  --secondary-color: white;
}
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: "poppins", sans-serif;
  background-color: white;
}
/* dailyWeather styling */
h1 {
  color: white;
  font-size: 6em;
  margin-top: -10px;
  font-weight: 300;
  margin-bottom: -20px;
}
h2 {
  color: white;
  font-size: 2em;
  font-weight: 300;
  margin: 0;
}

h3 {
  margin: 0;
  color: white;
  font-weight: 300;
  margin-bottom: 25px;
}

h1 span {
  font-size: 30px;
  position: absolute;
  margin-top: 30px;
}

.weather-container {
  /* height: 50vh; */
  width: 100%;
  background: linear-gradient(
    180deg,
    rgb(176, 156, 224) 0%,
    rgba(227, 227, 255, 1) 100%
  );
  border-bottom-left-radius: 110% 110px;
  border-bottom-right-radius: 110% 110px;
}

.dailyWeather {
  display: flex;
  flex-direction: column;
  top: 0;
}

.weather-data {
  margin-top: -50px;
  padding: 30px;
}

.main-icon {
  position: absolute;
  width: 60%;
  margin-left: 120px;
  margin-top: -360px;
}

#sunriseAndSunset {
  word-spacing: 20px;
}

.weeklyWeather {
  font-size: 20px;
  color: #777;
  margin-top: 50px;
}

.weeklyWeather img {
  position: absolute;
}

#theWeek {
  display: flex;
  justify-content: space-evenly;
}

#theWeek p {
  margin: 20px;
  word-spacing: 40px;
  /* padding-left: 160px; */
  margin-block-end: 5px;
}

#theWeek:hover {
  background: rgb(238, 238, 238);
  width: 100%;
  cursor: pointer;
}

/* burger menu */

.burger-btn {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

.burger {
  padding: 20px;
}
.sideMenu {
  position: fixed;
  background: linear-gradient(
    180deg,
    rgb(176, 156, 224) 0%,
    rgba(227, 227, 255, 1) 100%
  );
  top: 0;
  right: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 85px;
  z-index: 10;
  transition: all 1s ease;
  display: none;
  margin-block-start: 0;
}

li {
  color: white;
  font-size: 30px;
  list-style: none;
  padding: 10px;
}

a:visited,
a:link {
  color: white;
  text-decoration: none;
}

.closeMenu {
  position: fixed;
  top: 0;
  left: 0;
  padding: 20px;
  transition: all 0.5s ease;
  cursor: pointer;
}

.input-location {
  position: absolute;
  padding: 16px;
  border-radius: 30px;
  width: 240px;
  border: none;
  text-align-last: center;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.431);
  font-size: 18px;
}

input:focus {
  outline: none !important;
  border-color: #a897f9;
}

.footer {
  background: #e0dffe;
  font-family: "poppins", sans-serif;
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-top: 40px;
}

.project {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  color: #9e93ef;
}
.technigo {
  font-size: 10px;
}
.foxes {
  text-transform: uppercase;
  font-weight: 400;
  color: #9e93ef;
}
.people {
  font-size: 10px;
}

/* TABLET LANDSCAPE */
@media (min-width: 668px) and (max-width: 1024px) {
  .main-icon {
    margin-left: 300px;
    bottom: 80px;
    width: 65%;
  }

  .weather-data {
    padding: 40px;
    /* margin: -50px 100px; */
  }

  .main-icon {
    margin-left: 285px;
    margin-top: -400px;
    width: 70%;
    position: relative;
  }

  #theWeek p {
    padding-left: 230px;
  }

  h1 {
    font-size: 110px;
    margin-bottom: -50px;
  }

  h1 span {
    font-size: 28px;
  }

  h2 {
    font-size: 40px;
    margin-top: 20px;
  }

  #sunriseAndSunset {
    font-size: 22px;
  }

  h3 {
    font-size: 25px;
  }

  .burger {
    width: 60px;
  }
}

/* DESKTOP LANDSCAPE */
@media (min-width: 1025px) {
  body {
    background: rgb(58, 173, 250);
    background: linear-gradient(
      180deg,
      rgb(176, 156, 224) 0%,
      rgba(227, 227, 255, 1) 100%
    );
    height: 100vh;
  }

  .weather-container {
    background: none;
  }

  .main-icon {
    position: absolute;
    padding-top: 10px;
    width: 25%;
  }

  .weather-data {
    text-align: center;
    padding: 40px;
    /* margin: 20px 100px; */
  }

 
}
