* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}
#city {
  margin: 8px 0;
}
#getweather {
  margin: 8px 0px;
}
header {
  background-color: #f5f5f5;
  color: black;
  display: flex;
  padding: 10px;
  position: fixed;
  height: 100px;
  width: 100%;
  align-items: center;
  padding-left: 50px; 
}
#main {
  padding-top: 120px;
  width: 75%;
}

#getweather {
  background-color: #D9E8D8;
  color: #0d0c22;
  border: solid 2px;
  border-color: #C1D9BF;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: .3s ease;
}

#getweather:hover {
  background-color: #eff6ee;
}

/* From Uiverse.io by alexruix */ 
.group {
  display: flex;
  line-height: 28px;
  align-items: center;
  position: relative;
  max-width: 190px;
  margin-right: 25px;
}

.input {
  height: 40px;
  line-height: 28px;
  padding: 0 1rem;
  width: 100%;
  padding-left: 2.5rem;
  border: 2px solid transparent;
  border-radius: 8px;
  outline: none;
  background-color: #D9E8D8;
  color: #0d0c22;
  box-shadow: 0 0 5px #C1D9BF, 0 0 0 10px #f5f5f5eb;
  transition: .3s ease;
}

.input::placeholder {
  color: #777;
}

.input:hover {
  background-color: #e5f0e5;
}

.icon {
  position: absolute;
  left: 1rem;
  fill: #777;
  width: 1rem;
  height: 1rem;
}
#todaypicture {
  height: 256px;
  width: 256px;
  margin-right: 10px;
}
#today {
  display: flex;
  flex-wrap: wrap;
}
#today p {
  margin-top: 10px;
}
img {
  display: none;
}
img[src] {
  display: block;
}
#cityandtime {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 16px;
}