.body {
    background: rgba(216, 209, 209, 0.575);
  max-width: 600px;
  margin: 45px auto;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  border-radius: 16px;
  padding: 30px;
}
form {
  text-align: center;
}
#input-form {
  border-radius: 6px;
  border-style: solid;
  border-color: rgb(7, 7, 7);
  border-width: 3px;
  width: 75%;
  font-size: large;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  padding: 10px;
}
form .go {
  border-radius: 6px;
  border-style: solid;
  border-color: rgba(255, 166, 0, 0.397);
  border-width: 3px;
  width: 20%;
  font-size: large;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  background: rgba(22, 15, 1, 0.966);
  color: aliceblue;
  padding: 10px;
}
h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bolder;
  color: rgba(70, 38, 18, 0.555);
}
h1 {
  font-family: sans-serif;
  font-weight: bolder;
  margin-top: -30px;
  margin-bottom: -18px;
}
main {
  padding: 30px 0;
}
h1,
h2 {
  display: flex;
  position: relative;
  justify-content: flex-start;
  margin: 0 auto;
  width: 95%;
}
hr {
  width: 95%;
  border: none;
  height: 1px;
  background: beige;
}
#day,
.weather,
.text,
.links {
  display: flex;
  position: relative;
  /*justify-content: space-between; /* Align items evenly */
}
.text {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 500;
  text-align: right;
  position: relative;
  justify-content: flex-end;
  margin: 20px auto;
  top: -116px;
  width: 94%;
}

#day {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 500;
  justify-content: flex-start;
  margin: 20px auto;
  width: 95%;
}
.weather {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  justify-content: flex-start;
  margin: 20px auto;
  width: 95%;
}
.links {
  text-align: center;
  flex-direction: column; /* Stack links if necessary */
}
.current-weather {
  display: flex;
  justify-content: center; 
  gap: 150px;               
  margin-top: 20px;
}


.left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 260px;
  
}

.right {
  text-align: left;
  font-size: 14px;
  line-height: 1.8;
  min-width: 160px;
  margin-top: 80px;
  
  
}
#weather-icon {
  width: 70px;
  height: 70px;
  vertical-align: middle;
}

.forecast-date{
    text-align: center;
    font-weight: bolder;
    color: rgba(150, 21, 21, 0.92);
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
}
.forecast-icon{
    width: 50px;
    display: block;
    margin: 0 auto;
}
.forecast-tempHigh{
    text-align: center;
    font-weight: bold;
    color: rgb(62, 2, 2);
    padding: 10px;
}
.forecast-tempLow{
    text-align: center;
    padding: 10px;
    opacity: 1px;
}
.forecast-temp{
    display: flex;
    justify-content: center;
}
.forecast{
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    border-bottom: 2px solid rgba(22, 15, 1, 0.966);
    
}
.forecast-day{
    border: 10px solid rgba(65, 50, 100, 0.08);
    border-radius: 10px;
    
}