*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background: url("../img/img1.jpg"); 
  background-size:cover;
  background-position: center top;
}
.app-wrap{
  display: grid;
  grid-template-columns: 50% 50%;
  height:100vh;
  background-image: linear-gradient(top bottom,rgba(0,0,0,3),rgba(0,0,0,6));
}
header{
  display: flex;
  justify-content: center;
  align-items:flex-start;
  padding: 50px 15px 15px;
}
header input{
  width: 100%;
  max-width: 280px;
  padding: 10px 15px;
  border: none;
  outline: none;
  background-color: rgba(255,255,255,0.6);
  border-radius: 16px 0px 36px 0px;
  border-bottom:3px solid yellow;
  border-left:3px solid yellow;
  color: #333;
  font-size: 20px;
  font-weight: 300;
  transition: 0.2s ease-out;
  background-image: linear-gradient(to right, white , lightblue);

}
header input:focus{
  background-color: rgba(255,255,255,0.8);
  border-bottom:3px solid green;
  border-left:3px solid green;
  background-image: linear-gradient(to right, lightblue, white );
  border-radius: 0px 16px 0px 36px;
}
main{
  background-color: rgba(0, 0,0,0.5);
  padding: 25px 25px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.location .city{
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 5px;
}
.location .date{
  color: #fff;
  font-size: 16px;
}
.main-temp .temp{
  color: #fff;
  font-size: 100px;
  font-weight: 900;
  margin: 20px 0;
  text-shadow: -4px 10px rgba(0, 0,0,0.9);
}
.main-temp  .span{
  font-weight: 500;
}
.main-temp .weather{
color: #fff;
font-size: 32px;
font-weight: 700;
font-style: italic;
text-shadow: 0px 3px rgba(0,0,0,0.9);
}
.main-temp .hi-low{
color: #fff;
font-size: 24px;
font-weight: 500;
text-shadow: 0px 3px rgba(0,0,0,0.9);

}
.main-temp .mylink{
  color: #fff;
  /* background-color: aqua; */
  /* margin-top: 20vh; */
}
.mylink{
  margin-top: 50px;
}
.mylink li{
  position: relative;
  list-style-type: none;
  padding: 10px;
  border-bottom: 2px solid white;
  
}
.mylink li:hover{
  background-color: rgba(255, 255,255,0.3);
  transition: all 1s;
}
.mylink li a{
  text-decoration:none;
  color: white;
}
#ins:hover{
  border-bottom: 2px solid red;
}
#fac:hover{
  border-bottom: 2px solid blue;
}
#teg:hover{
  border-bottom: 2px solid blue;
}
.mylink img{
  border-radius:10px;
  width: 30px;
  height:30px;
  position: absolute;
  bottom:5px;
  left: 10px;
  margin-right: 5px;
}

@media(max-width:900px)
{
  .app-wrap{
    /* background-color: blue; */
    grid-template-columns:100%;
  }
  
  .main{
    background-color: blue;
    margin-top: 50px;
  }
  .mylink{
    display: none;
  }
}













