* {
  margin: 0;
  padding: 0;
}
body {
  background-color: #000432;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 40px 20px;
}
.container{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  }
.weather-container {
  background-color: #bebebe;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  min-width: 400px;
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.5s ease;
  overflow: hidden;
}
.site-title{
text-align: left;
font-size: 24px;
margin: 0 0 20px 0;
color: rgb(0, 39, 122);
}
.form-label{
  font-size: 16px;
  margin-bottom: 8px;
  display: block;
}
.city-select{
  padding: 8px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  margin-bottom: 10px;
  cursor: pointer;
}
.submit-button{
  padding: 8px;
  width: 100%;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}
.submit-button:hover{
  background-color: #45a049;
}
.logo{
  color: aliceblue;
  padding-top: 15px;
  font-family: Arial, Helvetica, sans-serif;
}
main{
  padding: 20px;
  padding-top: 80px;
}
form{
  margin-bottom: 20px;
}
select, button {
  font-size: 1rem;
  padding: 6px 12px;
}
#weather-result {
  opacity: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 10px;
  transition: opacity 0.5s ease;
}
#weather-result.show {
  opacity: 1;
}
.hour-forecast {
  display: flex;
  justify-content: space-between;
  align-items: center;

  background-color: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 8px;

  padding: 8px 12px;
  margin: 4px auto;

  font-family: "Courier New", monospace;
  font-size: 14px;
  color: black;
}
#weather-result {
  color: black;
}
#weather-result {
  color: black;
}

.hour-forecast {
  color: black;
}

.hourly-heading {
  text-align: center;
  margin: 20px 0 10px 0;
  color: black;
  font-weight: bold;
  font-size: 18px;
}
.hour-forecast {
  display: flex;
  justify-content: space-between;
  align-items: center;

  background-color: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 8px;

  padding: 8px 12px;
  margin: 4px 0;

  font-family: "Courier New", monospace;
  font-size: 14px;
  color: black;
}
@media (max-width: 600px) {
  #weather-result {
    justify-content: center;
  }

  .hour-forecast {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
html, body {
  height: auto;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}