* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  background-image: url("bg.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  color: whitesmoke;
}

/* Container */

.app-wrap {
  display: flex;
  flex-direction: column;
  min-width: 100vw;
  min-height: 100vh;
  background-image: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.2));
}

/* SeacrhBox */

header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 55px 15px 15px;
}

header input {
  width: 100%;
  max-width: 400px;
  padding: 10px 15px;
  border: none;
  outline: none;
  background-color: rgba(255,255,255,0.7);
  border-radius: 6px;
  color: #000;
  font-size: 18px;
  font-weight: 300;
}

header input:focus {
  background-color: rgba(255,255,255,0.5);
}

/* Main Content */

main {
  /* flex: 1px 1px 100%; */
  padding: 20px 20px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Section : Location */
/* City */

.location .city {
  /* color: #fff; */
  font-size: 50px;
  font-weight: 500;
  margin: 20px;
}

/* Date */

.location .date {
  font-size: 20px;
}

/* Temperature */

.current .temp {
  font-size: 111px;  
  margin: 20px auto;
  font-weight: lighter;
  text-shadow: 5px 8px rgba(0,0,0,0.2);
}

.current .temp span {
  font-weight: 200;
}

/* Weather */

.current .weather {
  font-size: 45px;
  font-weight: 500;
  margin-bottom: 20px;
  text-shadow: 1px 5px rgba(0,0,0,0.5);
}

/* Hi-Low */
.current .hi-low {
  font-size: 35px;
  text-shadow: 1px 5px rgba(0,0,0,0.5);
}