@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;500&family=Rubik:wght@400;500;700&display=swap");

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  padding-bottom: 15px;
  font-family: "Rubik", sans-serif;
  position: relative;
}

header {
  text-align: center;
  font-size: 2.5em;
  padding: 0.4em;
  color: white;
  background: #0693e3ff;
  border-bottom-left-radius: 25%;
  border-bottom-right-radius: 25%;
}

#map {
  height: 300px;
  background: white;
  width: min(500px, 98vw);
  margin: auto;
  background: #ccc;
}

.container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: 15px;
}

.lat-long {
  display: flex;
  justify-content: center;
  align-items: center;
}

.latitude,
.longitude {
  margin: 10px;
}

#lat,
#long {
  font-family: inherit;
  border: 2px solid black;
  width: min(200px, 40vw);
}

#lat:disabled,
#long:disabled {
  background: #eff;
  color: #222;
  border: 2px solid black;
}

input {
  margin: 2px;
  padding: 0.3em;
  outline: none;
}

.footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  font-family: "Open Sans", sans-serif;
  color: #f5f5f5;
  background-color: black;
  padding: 10px 0px;
  font-size: min(2vw, 15px);
  position: fixed;
  left: 0px;
  bottom: 0px;
  width: 100%;
}
