.weather-box {
      display: flex;
      justify-content: space-between;
      align-items: center;
      /*background: rgba(0, 0, 0, 0.6);*/
      /*padding: 40px;*/
      border-radius: 20px;
      width: 80%;
      /*max-width: 80%;*/
    }

    .right {
      flex: 1;
	  color: #272626;
    }
	
	.left {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* aligns items to the left */
  text-align: left;
  color: #272626;
  
}

    .left h1 {
      font-size: 3rem;
      font-weight: 600;
    }
	
	
	@media (max-width: 600px) {
   .weather-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .left {
    align-items: center;
    text-align: center;
	
  }

  .right {
    align-items: center;
    text-align: center;
	
  }
}

    .temperature {
      font-size: 4rem;
      display: flex;
      align-items: center;
      margin-top: 10px;
    }

    .temperature i {
      font-size: 2.5rem;
      margin-left: 10px;
    }

    .feels-like {
      font-size: 1.2rem;
      margin-top: 10px;
    }

    .refresh-button {
      margin-top: 15px;
      background: #333;
      color: white;
      border: 1px solid #555;
      padding: 6px 14px;
      border-radius: 8px;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.3s;
    }

    .refresh-button:hover {
      background: #444;
    }

    .right div {
      font-size: 1.2rem;
      margin-bottom: 10px;
      text-align: right;
    }

    .wind-arrow {
       /*display: flex;
  justify-content: center;*/
  align-items: center;
  margin: 15px 0;
    }

    .arrow-icon {
      display: inline-block;
      transform: rotate(0deg);
      transition: transform 0.3s;
      font-size: 2rem;
	  font-size: x-large;
    }

    @media (max-width: 768px) {
      .weather-box {
        flex-direction: column;
        text-align: center;
      }

      .right {
        text-align: center;
      }

      .right div {
        text-align: center;
      }
    }
	
	#icon {
  font-size: 4rem;       /* Increases size of the icon */
  vertical-align: middle;
  margin-left: 10px;     /* Optional spacing from temperature */
}

.Refresh-button-align{
display: flex;
  justify-content: right;
}

#Weather {
    background-image: url('../img/weather-bk.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	background-attachment: fixed;
	margin: 0 auto;
	   max-width: 1280px; /* creates "padding" effect on sides */
  border-radius: 10px; /* optional for a cleaner look */
  }
  
  /* Responsive adjustments for small screens */
  @media (max-width: 600px) {
    #Weather {
      border-radius: 0px;
    }
  }