body, html {
  margin:0;
  padding:0;
  background-color:hsl(270, 100%, 20%);
  color:lightgray;
  text-align:center;
}
h1, h2, h3 {
  font-family: "Matemasie", sans-serif;
}
p, span {
  color:ghostwhite;
  font-size:1.3em;
  font-family: "Poppins", sans-serif;
}
a {
  font-size: 0.9em;
  color:limegreen;
}
a:visited {
  color:hotpink;
}
input {
	background-color: teal;
	color: ghostwhite;
	padding: 0.5em;
	border-radius: 0.6em;
	width: 50%;
	margin-bottom: 2em;
    box-sizing: border-box;
    clear: both;
    display: block;
    margin: 1em auto;
    border: none;
}
button {
  border:none;
  font-size:1.2em;
  cursor:pointer;
  background-color: teal;
  color: ghostwhite;
  padding: 0.5em;
  border-radius: 0.6em;
  transition: scale 0.3s;
}
button:hover {
  scale: 1.15;
}
button:active {
  transform: translateY(10px);
}
.flexer {
  display: flex;
  justify-content: space-between;
}
.flexer img {
  width: 6em;
}
.flexer div {
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.murTxt {
  margin-top: 1.5em!important;
  font-weight: bold;
}
.dataText {
  position: relative;
}
.dataText p{
  font-size: 12px;
  margin: 0;
}
.presets {
	font-size:0.9em;
}
.active {
	background-color:green;
}
#presetButts {
	margin:1em;
}
#container {
  width:50%;
  margin:0 auto;
  padding: 0.5em;
  box-sizing:border-box;
}
#weatherResult {
  background-color: hsl(270, 100%, 30%);
  border-radius: 0.7em;
  padding:0.6em;
  margin: 2em auto;
  box-sizing:border-box;
  width: 50%;
  margin-top: -55px;
}
#weatherResult h3 {
  font-variant:small-caps;
  text-transform: capitalize;
  font-family: sans-serif;
  font-size:1.4em;
}
#weatherResult p, span {
  margin: 0;te
  padding: 0;
  font-size:0.9em;
}
#theMursu {
  max-width:30%;
  max-height:350px;
  clear: both;
  display:block;
  margin: 2em auto;
}
#windArrow {
  font-size:2.5em!important;
}
#otherData {
  display: flex;
  justify-content: space-evenly;
  margin: 1em auto;
  padding: 1em;
  align-items: center;
}
#forecast {
  margin-bottom:-15px;
}
#cont {
  position: relative;
}
#moon, #sun {
  font-size: 80px;
  margin: 0;
}
#sun {
  font-size:100px;
  margin-bottom:-95px;
}
#moon {
    margin-bottom:-80px;
}
#sundata, #moondata {
  position: absolute;
  transform: translateX(-50%);
  margin: 0;
  display: flex;
  flex-direction: column;
}
#sundata {
  left: 25%;
  top: -16px;
}
#moondata {
  right: 15%;
  top: 0;
}
#sunrise, #sunset, #moonrise, #moonset {
  margin: 0;
  color:black;
  font-weight: bold;
}
#moonrise, #moonset {
  color: ghostwhite;
  text-shadow: 1px 1px black;
}


@media only screen and (max-width:1300px) {
  h2 {
    margin-top:2em;
  }
  h3 {
    margin:0;
  }
  #theMursu {
    max-height: 200px;
  }
  #container, #weatherResult {
    width: 70%;
    margin-top: -45px;
  }
}

@media only screen and (max-width: 600px) {
  input {
    width:100%;
  }
  #theMursu {
    max-width: 70%;
  }
  #container, #weatherResult {
    width: 100%;
  }
  #sundata {
    left: 20%;
  }
  #moondata {
    right: 0;
  }
}

