@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@500&display=swap');

body {
  color: white;
  background-repeat:repeat;
  background-size: auto;
}

main {
  color: black;
  display: grid;
  width: 100%;
  flex-wrap: wrap;
  height: 200px;
  justify-content: center;
  gap:1rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 300px));
  grid-auto-rows: minmax(200px,200px);
}

.weather-card {
  background-color: #ffede6;
  background: #00D2FF;
  background: linear-gradient(to bottom, #00D2FF 0%, #3A7BD5 100%);
  border-radius: 5px;
  box-shadow: 4px 4px 4px grey;
  opacity: 0.80;
}
.weather-card:hover {
  opacity: 1;
  position: relative;
  top: 1px;
  right: 1px;
}
/* .mini-cards{
  background-color:aquamarine;
  border: 1px solid salmon;
} */
.city {
  font-size: 32px;
  width: 100%;
  height: 40px;
  font-style: italic;
  color: black;
  padding-left: 10px;
  padding-bottom: 5px;
  background-color: white;
  border-bottom: 1px solid black;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}
.line1 {
  height: 30px;
  padding: 0 10px;
  font-size: 20px;
  border-bottom: 1px dashed grey;
}
.outlook{
  float: right;
}

.line2 {
  height: 40px;
  padding: 0 10px;
  border-bottom: 0px dotted black;
}
.img-outlook{
  position: relative;
  left: 230px;
  top: -48px;
}
.deg{
  color: white;
  font-size: 34px;
  position: relative;
  top: -4px;
}
.line3{
  display: flex;
  height: 90px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  background-color: 	#b2e0ff;
  font-family: 'Heebo', sans-serif;
  font-size:14px;
}
.line3-left,
.line3-right{
  border: 0px solid black;
  width: 50%;
}
.line3-left{
  border-right: 2px solid #585fff;
  display: flex;
  flex-direction: column;
  align-items:start;
  justify-content: space-around;
  padding-left: 5px;
}
.line3-right{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.sunrise,
.sunset{
  border: 1px dotted #3A7BD5;
  padding: 5px;
}

header{
  text-align: center;
  font-size: 2rem;
  margin: 40px;
  font-family: 'Roboto', sans-serif;
}
