body {
  /* font-family: "Poppins", sans-serif; */
  font-size: 1.125rem;
}

.header,
.timer,
.footer {
  font-family: "Poppins", sans-serif;
}
/* Wrapper */

.wrapper {
  height: 100vh;
  width: 100%;
  padding: 0 20px;
  color: white;
}

.wrapper::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.1); /* rgba(0, 0, 0, 0.3);and 0.2 before with a black tint*/
}
.wrapper::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
  /* background-image: url("../images/background/img-1.jpg"); WIll be change in javascript, The Image locations is at wrapper css */ 
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition:  0.9s ease-in-out;
}
/* Hero Section */

/* Header */
.header-cont,
.footer-cont {
  justify-content: space-between;
  height: calc(15vh - 5px);
}

/* Weather Settings*/
.weather {
  color: white;
}

.weather__icon,
.weather__temperature {
  flex-grow: 1;
  flex-basis: auto;
}
.weather__icon {
  height: 60px;
  width: 60px;
}
.weather__temperature {
  padding-left: 10px;
  font-size: 1.8rem;
}

/* Main Content */
.main-cont {
  height: 70vh;
  width: 100%;
  flex-direction: column;
  font-size: 3.5rem;
}

/* Tiner Cont */
.timer {
  /* font-size: 6rem; */
  /*font-size: 9.5rem;*/
  font-size: 7.5rem;
  font-weight: 700;
}

/* Greating Cont */
.greeting {
  font-size: 4rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
}

/* Todays Focus */
.todays-focus__text {
  font-size: 2.5rem;
  font-weight: 300;
}
.user-form input {
  font-size: 1.7rem;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid white;
  outline: none;
}

/* Footer Cont */
.footer-cont {
  position: relative;
}

.settings,
.quotes,
.todo__btn-container {
  flex-grow: 1;
}

.settings,
.todo__btn-container {
  flex-basis: 30%;
}

.settings {
  gap: 5px;
}

/* Background Image */
.background-img-info,
.quotes {
  flex-flow: column;
  gap: 2px;
}



.background-img__location,
.quotes-cont{
  font-family: "Figtree", sans-serif;
  font-size: 14.5px;
  font-style: normal;
  font-weight: 400;
}
/* Quotes */

.quotes {
  height: inherit;
  flex-basis: 70%;
}

.quotes-cont {
  height: auto;
}

/* Todo Section */
.todo__btn-container {
  justify-content: flex-end;
}
.todo__btn {
  cursor: pointer;
}

/* This is the todo content displayer */
.todo-cont {
  height: auto;
  width: 300px;
  padding: 10px;
  color: var(--DARK);
  background-color: var(--LIGHT);
  border-radius: 6px;
  position: absolute;
  bottom: 10vh;
  right: 0;
  transition: all 0.3s;
}

.active {
  display: none;
}
