/*____Global____*/
/*Colors*/
:root {
  --veryDarkGray: hsl(0, 0%, 17%);
  --darkGray: hsl(0, 0%, 59%);
}
body {
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  text-align: center;
  padding: 0;
  margin: 0;
}
.header {
  background-image: url("images/pattern-bg.png");
  background-repeat: no-repeat;
  color: white;
  background-size: cover;
  position: relative;
}
h1 {
  margin: 0;
  padding: 2em 0 0.5em;
}
input {
  font-size: 1rem;
  padding: 1.05em;
  width: max(50%, 275px);
  margin: 1.5em 0 8em;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border: 3px solid white;
  cursor: pointer;
}
.details {
  background-color: white;
  border-radius: 10px;
  width: max(50%, 200px);
  padding: 1em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  box-shadow: 0 0 15px grey;
}
@media only screen and (min-width: 756px) {
  .details {
    display: flex;
    width: fit-content;
  }
  .details div {
    padding: 1.5em;
  }
}
.details p {
  font-size: 0.6rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--darkGray);
}
.tm {
  display: inline;
}
.in {
  color: var(--veryDarkGray) !important;
  font-size: 1rem !important;
}

#mapid {
  height: 65vh;
  z-index: -1;
}
.searchLocation {
  background-color: black;
  border: none;
  padding: 24px 22px 22px;
  margin: -5px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  cursor: pointer;
}
.searchLocation:hover {
  background-color: var(--veryDarkGray);
}

/*____Signature____*/
.attribution {
  font-size: 11px;
  text-align: center;
}

.attribution a {
  color: hsl(228, 45%, 44%);
}
