body{
  width: 100vw;
  /* height: 100vh; */
  background-color: black;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  
}
.winter{
  background-image: url(../images/winter.jpg);
}
.spring{
  background-image: url(../images/spring.jpg);
}
.summer{
  background-image: url(../images/summer.jpg);
}
.autumn{
  background-image: url(../images/autumn.jpg);
}
.wrapper{
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  min-height: 100vh;
}

/* Weather App */
.weather{
  font-size: 26px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 35px;
  width: 500px;
  height: 600px;
  color: black;
  background-color:rgba(128, 255, 212, 0.3);
  border: 1px solid black;
  border-radius: 10px;
}
.clear{
  display: inline;
  margin-right: 20px;
  width : 30px;
  height: 30px;
}
.clear i{
  font-size: 30px;
  color: #FFF;
}
.clear i:hover{
  cursor: pointer;
  text-shadow: 1px 3px 5px #000;
  transform: rotate(45deg);
}
.input{
  text-align: center;
  margin: 20px 0;
}
input[type="text"]{
  height: 40px;
  width: 250px;
  font-weight: bold;
  font-size: 26px;
  border: none;
  border-radius: 10px;
  padding: 10px 10px;
}
input[type="submit"]{
  height: 50px;
  width: 100px;
  font-weight: bold;
  font-size: 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}
input[type="submit"]:hover{
  color: goldenrod;
  text-shadow: 1px 1px black;
  border: none;
}
.display {
  text-align: center;
  font-weight: bold;
  font-size: 35px;
  line-height: 50px;
 }
 .place{
  font-size: 50px;
  text-shadow: 2px 2px blanchedalmond;
 }
 .temp{
   cursor: pointer;
 }
 .temp:hover{
    color: goldenrod;
    text-shadow: 2px 2px black;
 }
 .icon{
   background-color: rgba(158, 32, 32, 0.5);
   width:40%;
   margin: 0 auto;
   border-radius: 25%;
 }
.desc{
  text-transform: capitalize;
  text-shadow: 2px 2px blanchedalmond;
  padding-bottom: 10px;

}
.sunRiseSet, .localTime{
  font-size: 26px;
}
@media only screen and (min-width: 800px) {
  .wrapper{
    flex-direction: row;

  }
}

/* Arrange both Clocks */
.clocks{
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

/* Analog Clock */
.aClock{
  width: 400px;
  height: 400px;
  /* background: radial-gradient(white,black); */
  background-color:rgba(128, 255, 212, 0.3);
  border-radius: 50%;
  border: 14px double rgb(42, 35, 35);
  position: relative;
}
.aClock::after{
  content: '';
  position: absolute;
  background: radial-gradient(black, white);
  border-radius: 50%; 
  z-index: 11;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid black;
}
.aClock .number{
  --rotation: 0;
  position: absolute;
  width: 400px;
  height:400px;
  text-align: center;
  transform: rotate(var(--rotation));
  font-family: Arial, Helvetica, sans-serif;
  color:black;
  text-shadow: 3px 3px 5px white;
  font-size: 38px;
  font-weight: bold;
}
.aClock .number12 { --rotation: 0deg; font-size: 48px; font-weight: bold;}
.aClock .number1 { --rotation: 30deg; }
.aClock .number2 { --rotation: 60deg; }
.aClock .number3 { --rotation: 90deg; font-size: 48px; font-weight: bold;}
.aClock .number4 { --rotation: 120deg; }
.aClock .number5 { --rotation: 150deg; }
.aClock .number6 { --rotation: 180deg; font-size: 48px; font-weight: bold;}
.aClock .number7 { --rotation: 210deg; }
.aClock .number8 { --rotation: 240deg; }
.aClock .number9 { --rotation: 270deg; font-size: 48px; font-weight: bold;}
.aClock .number10 { --rotation: 300deg; }
.aClock .number11 { --rotation: 330deg; }

.aClock .hand {
  --rotation: 0;
  position: absolute;
  bottom: 50%;
  left: 50%;
  background-color: black;
  border: 1px solid white;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  z-index: 10;
  /* change clock had to rotate from bottom of hand */
  transform-origin: bottom;
  /* translateX move hand back 50% of width */
  /* rotate moves hand around clock */
  transform: translateX(-50%) rotate(calc(var(--rotation)* 1deg));
}
.aClock .second{
  width:5px;
  height: 45%;
  background: linear-gradient(black,white)
}
.aClock .hour{
  width: 13px;
  height: 33%;
}
.aClock .minute{
  width: 8px;
  height: 42%;
}
/* Digital Clock */
.dClock{
  width: 425px;
  height: 125px;
  /* background: radial-gradient(white, black); */
  background-color:rgba(128, 255, 212, 0.3);
  border: 10px double black;
  border-radius: 10px;
  margin-top: 25px;
}
.dClockTime {
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  color: black;
  text-shadow: 4px 4px 3px white;
  font-size: 75px;
  font-weight: bold;
  cursor: pointer;
}
.dClockTime span {
  font-size: 20px;
  font-weight: normal;
}
.dClockTime:hover{
  color:goldenrod;
  text-shadow: 2px 2px black;
}
.dClockDate{
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  color:black;
  text-shadow: 2px 2px white;
  font-size: 37px;
}