@import url('https://fonts.googleapis.com/css2?family=Sorts+Mill+Goudy&display=swap');

body {
  font-family: "Sorts Mill Goudy" ,-apple-system, BlinkMacSystemFont, Verdana, "sans-serif";
  font-size: 12px;

  background-color: #121212;
  color: #fff;
}

.back-link-title {
  max-width: 1080px;
  margin: 0 auto;

  padding: 0 30px 60px 75px;
}

#arts {
  display: flex;
  flex-wrap: wrap;

  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.art {
  max-width: 300px;

  margin: 0 auto;

  padding: 0 30px 80px 0;
}

.art a > * {
  width: 100%;
  text-decoration: none;
}

.art p, .art h1, .art a {
  text-decoration: none;
  color: white;
}

.art h1 {
  text-align: left;
  height: 30px;

  font-size: 20px;

  font-weight: 400;

  line-height: 1;
}

.tezos-logo {
  height: 0.9em;
  line-height: 1.2em;
  vertical-align: bottom;
}

.art p {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  line-height: 1.2;
  font-weight: 100;
}

p.sale {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-weight: normal;
}

a {
  color: white;
  text-decoration-color: white;
}

a > .available {
  text-decoration: underline;
}


video {
  width: 100%;
}

@media screen and (max-width: 640px){

  .back-link-title {
    padding: 0;
    padding-bottom: 40px;
    text-align: center;
  }

  #arts {
    max-width: none;
    width: 100%;
  }

  .art {
    max-width: 100%;
    padding: 0 10px 80px 10px;
  }

  .art h1 {
    height: auto;
    padding: 4px 40px;
  }

  .art p {
    padding: 4px 40px;
    width: auto;
  }
}

.spinner-container {
  width: 100%;

}

#spinner {
  display: block;
  width: 10vw;
  height: 10vw;
  border: 3px solid rgba(255,255,255,.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;

  margin: 60px auto;
}

@keyframes spin {
  to { -webkit-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
  to { -webkit-transform: rotate(360deg); }
}

