/* PAGE HEADER  */
.page-header {
  margin: 50px;
  font-size: 3vw;
  color: gray;
  text-transform: uppercase;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: goldenrod;
}
html {
  scroll-behavior: smooth;
}

/* BODY  */
.dealer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  text-align: center;
  align-items: center;
  height: 100%;

}
.dealer {
  padding: 10px;
  margin: 10px;
  width: 30%;
  height: auto;
  border: slategray 1px solid;
}

.dealer:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.city {
  color: royalblue;
  font-family: Arial, Helvetica, sans-serif;
  font-size: large;
  text-align: center;
}
.dealer-name,
.phone {
  color: slategray;
  text-align: center;
  margin-top: 5px;
  text-transform: uppercase;
}
@media screen and (max-width: 750px) {
  .dealer {
    width: 40%;
  }
  .page-header {
    font-size: 6vw;
    margin: 0px;
    margin-top: 70px;
  }
}

@media screen and (max-width: 600px) {
  .dealer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .dealer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 2px;
    width: 100%;
  }
}
