.anek-tamil {
  font-family: "Anek Tamil", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}

body {
  background-color: #7d978c;
}

.weather-window {
  width: 500px; /* Adjust the width as needed */
  margin: 80px auto; /* Center the container */
  padding: 20px; /* Add some padding inside the container */
  border: 3px solid #03bb94; /* Create a solid black border */
  border-radius: 3%;
  box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.5); /* Optional: add some shadow for better visibility */
  background-color: #343635;
  /* Optional: set a background color */
  font-family: "Anek Tamil", sans-serif;
  transition: transform 0.3s ease; /* Smooth transition for the hover effect */
}

.weather-window:hover {
  transform: scale(1.08); /* Scale up the body and its content on hover */
}

header,
footer {
  text-align: center;
}

h1 {
  color: rgb(0, 166, 130);
}

h2 {
  font-size: xx-large;
  color: rgb(0, 166, 130);
  margin-bottom: 0;
  margin-left: 45px;
  margin-bottom: 0px;
}

a {
  color: rgb(0, 166, 130);
}

.main-section {
  display: flex;
  justify-content: space-between;
}

.temperature-display,
.weather-details {
  display: inline-block; /* Make elements display inline, but still allow margins */
  vertical-align: top; /* Aligns them to the top of each other */
}

.temperature-display {
  display: flex;
  margin-top: 23px;
  margin-left: 85px;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.weather-icon {
  width: 40px;
  height: 40px;
}

.weather-unit {
  font-size: 25px;
  font-weight: bold;
  color: rgb(0, 166, 130);
}

.weather-app-details {
  margin-left: 45px;
  margin-top: 0px;
  padding-top: 0px;
  color: rgb(255, 255, 255);
  font-weight: 300;
}

.weather-details {
  color: rgb(255, 251, 251);
  font-weight: 300;
  margin-right: 40px;
  margin-top: 0px;
  padding-top: 0px;
}

.weather-value {
  font-size: 45px;
  font-weight: bold;
  color: rgb(0, 166, 130);
  margin-bottom: 0px;
  padding-bottom: 0px;
}

#city-input {
  background-color: rgb(238, 247, 245);
  border-radius: 6px;
  border-width: 2px;
  border-color: rgb(0, 165, 129);
  width: 60%;
  padding: 7px;
  margin-left: 17px;
}

#search-button {
  background-color: rgb(0, 166, 130);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 8px;
  margin-left: 10px;
}

#city-input::placeholder {
  color: rgb(81, 81, 81);
}

.forecast-temperatures {
  display: flex;
}

.forecast-temperature1,
.forecast-temperature2 {
  padding: 3px;
}

.forecast-1,
.forecast-2,
.forecast-3,
.forecast-4,
.forecast-5 {
  text-align: center;
  color: rgb(255, 254, 254);
  transition: transform 0.2s ease-out;
}

.forecast-1:hover,
.forecast-2:hover,
.forecast-3:hover,
.forecast-4:hover,
.forecast-5:hover {
  transform: scale(1.2); /* Scale up the body and its content on hover */
  cursor: pointer;
}

.weather-forecast {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.forecast-icon {
  width: 36px;
}

input[type="submit"]:hover {
  background-color: rgb(0, 184, 156); /* Light blue color on hover */
  cursor: pointer;
}

footer {
  font-size: 15px;
  color: rgb(255, 254, 254);
}
