/* Global */
main {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  height: 86vh;
  font-family: 'Work Sans', sans-serif;
}

/* Navbar */

nav {
  background-color: #000000;
}

#unico{
  font-family: 'Dela Gothic One', cursive;
  font-size: 50px;
  color: white;
}

#nav-links {
  font-family: 'Work Sans', sans-serif;
  font-weight: bold;
  text-transform: uppercase;
}

#water-drop {
  height: 40px;
}

/* Search Bar  */
.search-bar {
  border-radius: 0px;
  height: 75px;
  width: 100%;
  font-size: 30px;
  font-weight: bold;
  border: 0;
  background-color: rgb(225, 225, 225);
  text-align: center;
}

.search-btn {
  width: 100%;
  height: 50px;
  border: none;
  background-color: rgb(12, 12, 12);
  color: white;
}

.search-btn:hover {
  color: rgb(193, 193, 193);
}

/* Map Area */

#map-area {
  border: 1px solid black;
}

#static-map {
  height: 70vh;
}

#map {
  border-right: 2px solid black;
}

#stations {
  max-height: 550px;
  overflow-y: scroll;
}

.fuelCard {
  padding: 10px 0px;
  border-bottom: 1px solid grey;
  overflow-y: scroll;
  line-height: 0.75;
}

.stn-name {
  font-weight: bolder;
}

h4 {
  text-align: center;
}

/* Article page styling */
.article{
  margin: auto;

}
.heading{
  font-size: 30px;
  font-weight: bolder;
}

.content{
  font-size: 20px;
}

#carimg {
  width: 700px;
}

a:link { text-decoration: none; }
a:visited { text-decoration: none; }
a:hover { text-decoration: none; }
a:active { text-decoration: none; }
