/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Fugaz+One&display=swap");
/* general CSS */
body {
  background-color: white;
  color: white;
}
.wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  background-color: #434a42;
  padding: 1rem;
}
h1 {
  padding-top: 2rem;
  font-family: "Fugaz One", sans-serif;
}

p {
  font-size: larger;
}

/* Map CSS */

#map {
  height: auto;
  min-height: 500px;
  width: 100%;
  padding: 0% 10%;
  color: black;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}
/* Search Bar and Button  */

#text-input-card {
  width: 25%;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  margin: 10px;
  padding: 5px;
  font-family: Roboto, sans-serif;
  font-size: large;
  font-weight: bold;
}

#text-input {
  width: 100%;
  padding: 10px;
  margin: 0;
  box-sizing: border-box;
}

#text-input-button {
  display: inline-block;
  margin-top: 0.5rem;
  width: auto;
  padding: 0.6rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  background-color: #2563eb;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.15s ease-in-out;
  text-align: center;
}
/* Tables CSS */
#locations {
  width: auto;
  margin: auto;
  text-align: center;
  color: whitesmoke;
}
#locations th,
td {
  padding: 10px;
  border: 1px solid;
}
#locations th {
  background-color: #70933d;
}
/* Img CSS */
.round-img {
  border-radius: 2rem;
  object-fit: cover;
}
