body {
  background-image: url('../images/bg-clean.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  overflow: hidden;
  color: #44251a;
  font-family: "DynaPuff", system-ui;
  margin: 0;
  position: relative;
}

.animated-sticker {
  position: absolute;
  z-index: 0;
}

.duck-gif {
  bottom: 10%;
  left: 65%;
  width: 800px;
}

.plant-gif {
  bottom: 5%;
  right: 65%;
  width: 800px;
}

.app-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 30px;
}

.app-logo-heading {
  display: flex;
  justify-content: center;
}

.app-logo-image {
  display: block;
  margin-top: -90px;
  height: 100px;
  width: auto;
}

.day-calendar {
  background-color: #EEBBC4;
  border-radius: 20px;
  width: 200px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 2px solid #44251a;
  padding-bottom: 50px;
}

.calendar-binder {
  background-color: #FFDE59;
  height: 40px;
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 1px;
  box-sizing: border-box;
  border-bottom: 2px solid #44251a;
}

.binder-bar {
  display: block;
  margin-top: -35px;
  width: 10px;
  height: 20px;
  background-color: #AC99AC;
  border: 3px solid #44251a;
  border-radius: 50px;
}

.current-day-text {
  font-size: 60px;
  font-weight: 500;
  color: #FFDE59;
  line-height: 1;
  margin-top: auto;
  width: 100%;
  text-align: center;
   text-shadow:
   -2px -2px 0 #44251a,
    2px -2px 0 #44251a,
   -2px 2px 0 #44251a,
    2px 2px 0 #44251a,
    0px 2px 0 #44251a,
    2px 0px 0 #44251a,
    0px -2px 0 #44251a,
   -2px 0px 0 #44251a; 
}

#time {
  display: flex;
  justify-content: center;
  align-items: center;  
  box-sizing: border-box; 
  width: 200px;
  height: 200px;
  background-color: #FFDE59;
  border: 15px solid #FFBD59;
  box-shadow:
    0 0 0 3px #44251a,       
    inset 0 0 0 3px #44251a;
  border-radius: 50%; 
}

#digital-clock-display {
  font-family: "Fredoka", sans-serif;
  font-size: 50px;        
  font-weight: bold;
  color: #EEBBC4;
  line-height: 1;            
  text-align: center; 
  text-shadow:
   -2px -2px 0 #44251a,
    2px -2px 0 #44251a,
   -2px 2px 0 #44251a,
    2px 2px 0 #44251a,
    0px 2px 0 #44251a,
    2px 0px 0 #44251a,
    0px -2px 0 #44251a,
   -2px 0px 0 #44251a;     
}

.weather-app-container {
  background-color: #EEBBC4;
  max-width: 800px;
  margin: 0 auto;
  margin-top: -110px;
  padding: 30px;
  border-radius: 50px;
  border: 3px solid #44251a;
}

.weather-app {
  background-color: #FEFBEC;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 30px 5px;
  border-radius: 50px;
  border: 3px solid #44251a;
  line-height: 88px;
}

.search-input,
.submit-button {
  font-family: "DynaPuff", system-ui;
  border-radius: 50px;
  border: 3px solid #44251a;
  padding: 15px;
  font-size: 30px;
}

.search-input {
  background-color: #FEFBEC;
  color: #AC99AC;
  width: 78%;
}

.search-input::placeholder {
  color: #AC99AC;
}

.search-input:-webkit-autofill,
.search-input:-webkit-autofill:hover,
.search-input:-webkit-autofill:focus,
.search-input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0px 1000px #FEFBEC inset !important;
  -webkit-text-fill-color: #AC99AC !important;
  font-family: "DynaPuff", system-ui !important;
  font-size: 30px !important;
  border-radius: 50px !important;
  border: 3px solid #44251a !important;
  padding: 15px !important;
}

.submit-button {
  background-color: #EEBBC4;
  color: #44251a;
  margin-left: 10px;
}

h2 {
  font-size: 50px;
  font-weight: 500;
  margin: 0;
  margin-top: -20px;
  margin-bottom: 5px;
}

.weather-compliment {
  color: #44251a;
  text-shadow: none;
  font-size: 30px;

}

.weather-fallback {
  color: #44251a;
  text-shadow: none;
  font-size: 30px;
}

.weather-details {
  font-size: 30px;
  font-family: "Fredoka", sans-serif;
  font-weight: bold;
  line-height: 40px;
  margin-top: 10px;
  margin-bottom: 5px;
}

.day,
.weather-description,
.humidity-text,
.wind-text {
  color: #EEBBC4;
  text-shadow:
   -1px -1px 0 #44251a,
    1px -1px 0 #44251a,
   -1px 1px 0 #44251a,
    1px 1px 0 #44251a,
    0px 1px 0 #44251a,
    1px 0px 0 #44251a,
    0px -1px 0 #44251a,
   -1px 0px 0 #44251a;
}

main {
  padding: 20px 0;
}

.weather-app-data {
  display: flex;
  justify-content: space-between;
}

.weather-icon {
  width: 100px;
  height: auto;
}

.temperature-container {
  display: flex;
  font-size: 60px;
  gap: 10px;
  margin-top: -20px;
}

.forecast-container {
  display:flex;
  justify-content: space-around;
  background-color: #FEFBEC;
  max-width: 800px;
  margin: 30px auto 0;
  padding: 30px 30px 5px;
  border-radius: 50px;
  border: 3px solid #44251a;
  line-height: 88px;
}

.forecast-date {
  text-align: center;
  font-size: 30px;
  line-height: 20px;
  margin-bottom: 40px;
  margin-left: -20px;
}

.forecast-icon {
  text-align: center;
  height: 80px;
  line-height: 10px;
  margin-top: -20px;
}

.forecast-temperatures {
  display: flex ;
  justify-content: center;
  text-align: center;
  font-size: 30px;
  margin-top: -60px;
  margin-bottom: -10px;
  margin-left: -10px;

}

.forecast-temperature-high{
  padding: 5px;
}

.forecast-temperature-low{
  padding: 5px;
  color: #AC99AC;
}


footer {
  color: #FEFBEC;
  text-shadow:
   -1px -1px 0 #44251a,
    1px -1px 0 #44251a,
   -1px 1px 0 #44251a,
    1px 1px 0 #44251a,
    0px 1px 0 #44251a,
    1px 0px 0 #44251a,
    0px -1px 0 #44251a,
   -1px 0px 0 #44251a;
  font-size: 30px;
  text-align: center;
  margin-top: 60px;
}

a {
  color: #EEBBC4;
}