body {
  background-color: #f9f7fe;
  padding: 40px;
  font-family: "Roboto Mono", monospace;
}
a {
  color: #9370db;
}

main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

footer {
  font-size: 11px;
  color: #6c757d;
  border-top: 1px solid #ddd;
  margin-top: 20px;
  padding-top: 15px;
}

h1 {
  font-size: 40px;
  color: black;
}
p {
  color: #6c757d;
}
p strong {
  color: #f55252;
}

.weather-header {
  margin-bottom: 10px;
}

.weather-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.weather-app {
  max-width: 600px;
  background: white;
  margin: 0 auto;
  padding: 58px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.search-form-input {
  width: 100%;
  max-width: 450px;
  font-size: 17px;
  background-color: #f9f7fe;
  padding: 15px;
  border-radius: 6px;
  border: none;
}

.search-form-button {
  width: 100px;
  padding: 15px;
  font-size: 17px;
  border-radius: 6px;
  border: none;
  color: white;
  background: #9370db;
}

.weather-content {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 2px;
  padding: 20px;
}

.weather-app-icon {
  width: 88px;
  height: 88px;
}

.weather-app-temperature {
  font-size: 58px;
  font-weight: bold;
  line-height: 88px;
}
.unit {
  margin-top: 10px;
  font-size: 26px;
  line-height: 1;
  padding: 0;
}
