body {
  margin: 0px;
  overflow: hidden;
  font-family: cormorant;
  height: 100vh;
}

.banner {
  display: flex;
  position: sticky;

  top: 0%;
  width: 100%;
  height: min-content;
  border-bottom: thin solid white;

  background-color: #040b1a;
}

.banner__logo {
  height: 10vh;
  width: 10vh;
}

.banner__logo img {
  height: 10vh;
  width: 10vh;
  top: 50%;
  position: relative;
  transform: translateY(-50%);
}

.banner__label {
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 15px;

  color: #c09a75;

  font-size: xx-large;
}

.banner__label-break {
  display: none;
}

.banner__address {
  font-size: medium;
  color: white;
}

.main {
  display: flex;
  flex-direction: column;
  justify-content: normal;
  height: 90vh;
  width: 100vw;
  overflow: scroll;
  overscroll-behavior: none;
  
  background-image: url("background.png");
  background-position: center;
  background-size: cover; 
}

.main__about {
  padding: 15px;
  padding-bottom: 70px;

  border: none;
  background: linear-gradient(#040b1a 75%, transparent);
  
  text-align: center;
  color: #fff;
  font-size: xx-large;
}

.main__stylist {
  display: flex;
  flex-direction: column;
  
  border: solid thin transparent; 
  height: min-content;
  width: 80%;
  margin-top: 10vh;
  margin-bottom: 0px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 85px;

  background: radial-gradient(#040b1a 10%, transparent);
}

.main__stylist-2 {
  margin-top: 5vh;
  margin-bottom: 15vh;
}

.main__stylist:hover {
  border: solid thin white;
  cursor: pointer;
}

.main__stylist span {
  text-align: center;
  color: white;
}

.stylist__label {
  font-size: xxx-large;
}

.stylist__photo {
  height: 100%;
  width: 30%;
  margin-left: auto;
  margin-right: auto;
}

.stylist__photo img {
  height: 100%;
  width: 100%;
}

.stylist__instagram {
  height: 5ex;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
}

.stylist__instagram img {
  width: 20px;
  height: 20px;
}

.stylist__handle {
  font-size: large;
}

.stylist__handle a {
  color: white;
  text-decoration: none;
}

.stylist__handle a:hover {
  text-decoration: underline;
}

.stylist__book {
  padding-top: 25px;
  padding-bottom: 25px;
  font-size: xxx-large;
}

.stylist__book a {
  color: white;
}

.stylist__book a:hover {
  font-style: italic;
}

.divider__vline {
  height: 70vh;
  width: 3px;
  border-left: 5px dotted #040b1e;
  margin-left: auto;
  margin-right: auto;
}

.divider {
  margin-left: auto;
  margin-right: auto;
}

.divider__vline {
  display: none;
}

.footer {
  color: white;
  text-align: right;
  background: #040b1a;
  padding-right: 5px;
}

.footer a {
  color: white;
}

.main__location {
  width: 80%;

  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;

  background: radial-gradient(#040b1a 10%, transparent);
}

.location-label {
  text-align: center;
  color: white;
  font-family: cormorant;
}

.map-container {
  display: flex;
}

.map-container img {
  height: 25%;
  margin-top: auto;
  margin-bottom: auto;
}

.map {
  display: block;
  
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  
  border: 0;
}

@media screen and (max-width: 900px) {
  .banner__label-break {
    display: block;
  }

  .stylist__photo {
    width: 50%;
  }

  .main__location {
    margin-bottom: 25vh;
  }

  .map-container img {
    display: none;
  }

  .map {
    padding-left: 10px;
    padding-right: 10px;
    height: 50%;
    width: 80%;
  }
}
