body {
  color: #000000;
}
/* App background and borders */
.app-container {
  position: relative;
  width: 100%;
  max-width: 650px;
  height: 100%;
  max-height: 450px;
  overflow: hidden;
  display: grid;
  margin: 0 auto;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
  border: 2px #000000;
  border-radius: 25px;
  overflow-x: hidden;
}

.app-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://images.pexels.com/photos/1233245/pexels-photo-1233245.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2");
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  z-index: -1;
  display: grid;
  grid-template-columns: 3fr 1fr 3 fr;
  grid-template-rows: 216px;
  border: 1px #000000;
  border-radius: 25px;
  overflow-x: hidden;
}

/* App content */
.content-container {
  position: relative;
  z-index: 1;
  padding: 20px;
  text-align: center;
  display: flex;
}

/* Search form container */
.search-form {
  border: 3px transparent;
  border-radius: 55px;
  margin-bottom: 20px;
  padding: 10px;
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  width: 450px;
  height: 40px;
  top: 320px;
  left: 55px;
}

/* Search form bar */
#search-field {
  width: 250%;
  padding: 5px;
  margin: 5px 0;
  background-color: #ffffff;
  border-radius: 55px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

/* Search form input */
.search-input {
  color: #081108;
  text-align: center;
  font-size: 14px;
  font-family: "Uncial Antiqua", serif;
  text-shadow: 2px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Search button */
.search-button {
  background-color: #081108;
  color: white;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: 3px solid #faf9f7;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  left: 25px;
  bottom: 10px;
  text-align: center;
  font-size: 27px;
  line-height: 50px;
  font-family: "Uncial Antiqua", serif;
}

/* Hover effect */
.search-button:hover {
  background-color: #d39001;
  box-shadow: 0 0 10px 5px rgba(240, 216, 81, 0.8);
}

/* Glow effect */
.search-button:focus {
  outline: none;
  box-shadow: 0 0 20px 10px rgba(243, 191, 78, 0.8);
}

.temp,
.icon,
.info {
  color: #fff9f9;
  display: flex;
  position: relative;
  z-index: 2;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 5px;
}

/*font for .temp and .city*/
.temp,
.city {
  font-family: "Uncial Antiqua", serif;
  color: #fcfbf8;
  text-shadow: 7px 3px 6px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
  font-weight: bold;
}

.temp {
  bottom: 200px;
  left: 50px;
  font-size: 60px;
}

#metric {
  font-family: "Uncial Antiqua", serif;
  font-size: 50px;
}

.icon {
  width: 90px;
  height: 90px;
  left: 45px;
  bottom: 250px;
}

.info {
  left: 155px;
  bottom: 370px;
  flex-direction: column;
  font-size: 14px;
  font-stretch: expanded;
}
#descriptor {
  font-size: 14px;
}
.time,
.city,
.date {
  position: absolute;
  color: #fff9f9;
  display: flex;
}
.time {
  position: absolute;
  top: 150px;
  right: 55px;
  font-size: 18px;
  font-family: "Uncial Antiqua", serif;
}

.city {
  position: absolute;
  top: 170px;
  right: 55px;
  font-size: 20px;
}

.date {
  position: absolute;
  top: 250px;
  right: 50px;
  font-size: 16px;
}

footer {
  text-align: center;
  color: #f6eeee;
  bottom: 50px;
  left: 50px;
  position: relative;
  display: block;
  left: 5px;
}

a {
  color: #d4af37;
}

a:hover {
  color: #755b07;
}
