/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #fff;
	background-position: top;
  color: #151515; 
  font-size: 18px;
  font-family: "Ubuntu Sans Mono", monospace;
  margin: 0;
}

.art_nav {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  padding-top: 20px;
  width: 100%;
}

.art_nav.art_nav___bottom {
  border-bottom: 0;
  padding-top: 30px;
}

a {
  color: #3239FF;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

p {
    font-size: 14px;
  margin: 0;
}

.container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 20px 50px 20px;
}

/* all pieces */

figure {
  margin: 20px;
}

figcaption {
    margin-top: 10px;
}

/* specific pieces */

#payphone {
    max-height: 80vh;
    min-height: 500px;
    width: auto;
}

@media screen and (max-width: 1000px) {
  #payphone {
    min-height: unset;
    height: auto;
    max-width: 90vw;
  }
}