body {
  background-color: rgb(215, 237, 255);

  .roboto-<uniquifier > {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    font-variation-settings: "wdth" 100;
  }

  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

a {
  color: rgb(13, 10, 201);
}

.weather-card {
  background: linear-gradient(to bottom, #4facfe, #00f2fe);
  width: 500px;
  margin: 10px auto;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  color: white;
  text-align: center;
  padding: 30px;
}

header {
  border-bottom: 1px solid #f9f7fe;
  padding: 0 0 30px 0;
}

.search-form-input {
  background-color: #f9f7fe;
  border: none;
  border-radius: 6px;
  width: 100%;
  font-size: 16px;
  margin-bottom: 20px;
  padding: 15px 20px;
}

.search-form-button {
  background: rgb(13, 10, 201);
  padding: 15px 30px;
  border: none;
  font-size: 20px;

  border-radius: 6px;
  color: white;
}

main {
  padding: 30px 0;
}

.weather-app-data {
  display: flex;
  justify-content: space-between;
}

.weather-info {
  margin-right: 60px;
}

h1 {
  font-size: 36px;
  font-weight: 100;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  white-space: normal;
}

.date {
  font-size: 20px;
  color: rgb(13, 10, 201);
}

.weather-app-data strong {
  color: rgb(13, 10, 201);
}

.weather-app-temperature-container {
  display: grid;
  margin-top: -20px;
}

.temperature-info {
  font-size: 50px;
  display: flex;
  margin-top: 20px;
  margin-left: 20px;
}

.weather-app-temperature {
  font-size: 88px;
  line-height: 88px;
  font-weight: bold;
}

.weather-app-unit {
  margin-top: 6px;
  font-size: 28px;
}

.weather-condition {
  font-size: 40px;
  margin-top: 2px;
}

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

.weather-forecast-date {
  text-align: center;
  color: rgba(39, 33, 66, 0.4);
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}

.weather-forecast-icon {
  width: 88px;
  height: 88px;
  display: block;
  margin: 0 auto;
}

.weather-forecast-temperatures {
  text-align: center;
  color: rgb(13, 10, 201);
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.weather-forecast-temperature {
  padding: 0 10px;
}

footer {
  border-top: 1px solid #f9f7fe;
  padding: 30px 0 0 0;
  text-align: center;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
}
