body {
  padding: 0;
  margin: 0;
  background-image: url(img/16326460_rm218batch4-ning-32.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  font-family: "Poppins", sans-serif;
  color: #ffffff;

  /* From https://css.glass */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  min-height: 100vh;
}

.container {
  width: 950px;
  margin: 0 auto;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.card-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  background-color: #579ff11e;
}

.header-time-container{
  display: flex;
  justify-content: center;
  align-content: center;
  gap: 10px;
}
.header-time-container i{
align-self: center;
}

.header-time{
  font-size: 1.6rem;
  font-weight: bold;
      text-shadow: 2px 2px #70a5a14c;
}

i{
  text-shadow: 2px 2px #00000015;
}

.header-title {
  text-shadow: 2px 2px #70a5a14c;
}

header,
.daily-weather-container,
.weather-icon-container {
  border-bottom: 2px solid white;
  border-top: 2px solid white;
  border-radius: 2rem;
  background-color: #10458117;
}

/* CONTENT */
.content-container {

  /* DONT CHANGE */
    border-bottom: 2px solid white;
  border-top: 2px solid white;
  border-radius: 2rem;
  background-color: #398ef01e;
  min-height:475px;
  max-height: 100vh;
  width: 100%;

  /* can change */
  gap: 10px;
  padding: 15px 15px;
  display: flex;
  justify-content: space-evenly;
 
}



/* BOX LEFT */
/* DAILY WEATHER CONTAINER */
.daily-weather-container {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 20px;

}


.primary-temp-container{
    align-self: center;
    text-align: center;
    justify-content: center;
    align-content: center;

}


/* DONT CHANGE */
.feels-like-temp {
  text-align: center;
  padding: 5px;
}

.time-place-day{
  align-self: center;
  justify-self: center;
  justify-content: center;
  align-content: center;
  padding: 0;
  display: flex;
  flex-direction: column;
}

span .place-container{
  display: flex;
  font-size: 2rem;

}

.time-place-day span{
  margin: 0;
  padding: 0;
}

.current-day{
  margin: 0;
  padding: 0;
  
}

.weather-details-container{
  padding-top: 25px;
  align-content: center;
  justify-content: center;
  align-self: center;
  width: 90%;
}

.text-quote{
 font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
  color: rgb(255, 255, 255);
  text-shadow: 1px 1px #837f7f4c;
  text-align: center;
 word-wrap: break-word;
}

.text-quote-author{
   color: rgb(255, 255, 255);
  text-shadow: 1px 1px #837f7f4c;
   padding: 0px 15px;
}


.error-message{
    text-shadow: 2px 2px #6160604c;
    color: rgb(255, 255, 255);
}



/* BOX RIGHT */
/* WEATHER ICON CONTAINER */
.weather-icon-container {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 20px;
  position: relative;
 
}

/* IMG */
.weather-icon {
  align-self: center;
  position: absolute;
  bottom: 6rem;
  width: 80%;

}

.weather-description {
  text-transform: capitalize;
  text-align: center;
  align-self: center;
  font-size: 2rem;
  font-weight: bold;
  position: absolute;
  bottom: 6rem;
  text-shadow: 2px 2px #a2a3a5be;
  padding: 0px 15px;
}

.additional-weather-icon{
  display: flex;
  gap: 15px;
  align-content: center;
  justify-content: center;
  justify-self: end;
  position: relative;
  padding: 10px;
  top: 10.9rem;
  border: 1px solid white;
  background-color: #d6abe415;
  border-radius: 4rem;
}

.humidity-container,.wind-speed-container,.time-container{
  display: flex;
  align-items: center;
  gap: 5px;
    
}

*{
  /* border: 1px solid black; */
}


.secondary-temp-container {
  display: flex;
  justify-content: center;
 
  gap: 10px;

}

/* DONT REMOVE */
.secondary-temp-container span{
display: flex;
flex-direction: row;
gap: 5px;

}

span i{
  align-self: center;
}



/* others */
* {
  box-sizing: border-box;
}

