:root {
  --neongreen: #2cff5e;
  --words: hsla(0, 100%, 100%, 1);
  --bkgd: hsla(0, 0%, 0%, 1);
}

* {
  font-family: monospace, monospace, sans-serif;
  font-size: 16px;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-align: center;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bkgd);
}

.flexbox-main {
  display: flex;
  flex-direction: column;
  width: calc(100vw-2rem);
  height: 100vh;
  /*max-width: 1242px;*/
}

.content-main {
  display: block;
  width: calc(100vw-2rem);
  height: 50%;
  /*max-width: 1242px;*/
}


a,
#RSVP:hover {
  font-weight: 800;
  color: var(--neongreen) !important;
  background-color: black;
  text-decoration: none;
  padding: 1rem;
  /*margin: 1rem;*/
  border-radius: 1rem;
}

a:hover,
#RSVP {
  background-color: var(--neongreen);
  color: black !important;
}

.simple-link {
  font-weight: 800 !important;
  color: var(--neongreen) !important;
  background-color: transparent !important;
  text-decoration: auto !important;
  margin: 0;
  padding: 0;
  border-radius: 0 !important;
}

.simple-link:hover {
  color: var(--neongreen) !important;
  background-color: transparent !important;
}

.artist-link {
    margin-bottom: 2rem;
}

.flexbox-items {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bkgd);
}

.artist-image {
    margin: 0 auto;
    width: 50%;
    max-width: 540px;
}

.artist-name {
    margin: 2rem auto 0;
    padding-bottom: 0;
}

.artist-pronouns {
    color: #808080;
}

.artist-info {
  padding: 2rem;
  font-size: 0.875rem;
}

details {
  user-select: none;
  width: 100%;
  max-width: 600px;
  background-color: #111111;
  border: 1px solid #222222;
  border-radius: 1rem;
  padding: 1rem;
  margin: 1rem auto;
}

details > summary span.icon {
  font-size: 1rem;
  transition: all 0.5s;
  margin-left: auto;
}

details[open] summary span.icon {
  transform: rotate(180deg);
}

details * {
    color: white !important;
}

summary {
    font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  cursor: pointer;
  padding-bottom: 0.5rem;
}

summary::-webkit-details-marker {
  display: none;
}

.artist-section {
    margin-bottom: 3rem;
}

.piece-info {
    text-align: left;
    line-height: 1.5;
    background-color: #222222;
    border: 1px solid #222222;
    border-radius: 1rem;
    padding: 0.5rem;
}

.piece-description {
}

.piece-materials {
  font-style: italic;
}

.piece-bonus {
}

#navbar,
#graveyard {
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: auto;
  background-color: var(--bkgd);
  text-align: center;
}

#navbar a,
#graveyard a {
  text-decoration: none;
  font-weight: 800;
  color: var(--words);
  cursor: pointer;
}

.menu-item {
  margin: 1rem 0.5rem;
  /*min-width: 4rem;*/
}

.footer-item {
  margin: 1rem;
  min-width: 4rem;
}

#the-dec {
  text-align: left;
}

#the-char {
  text-align: right;
}

#wordmark {
  width: auto;
  height: 100%;
  max-height: 4rem;
  margin: 1rem;
  cursor: pointer;
}

.item-details {
  text-align: center;
  display: none;
  justify-content: space-around;
  flex-direction: column;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0rem 0rem 1rem black);
}

.content-page {
    margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  /*overflow-x: hidden;*/
  /*overflow-y: scroll;*/
  /*display: flex;*/
  /*flex-direction: row;*/
  /*justify-content: space-between;*/
  /*align-items: center;*/
  background-color: var(--bkgd);
}

.content-section {
  text-align: center;
  margin: 0 auto;
  color: white !important;
  overflow-x: hidden;
  overflow-y: scroll;
  /*display: none;*/
  /*justify-content: space-around;*/
  /*flex-direction: column;*/
  width: 100%;
  height: 100%;
  filter: drop-shadow(0rem 0rem 1rem black);
  padding-bottom: 2rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

[type="checkbox"] {
  display: none;
}

[type="Submit"] {
  -webkit-appearance: none;
  border: none;
  background-color: black !important;
  color: var(--neongreen) !important;
  padding: 1rem;
  margin: 0.5rem;
  border-radius: 1rem;
  cursor: pointer;
  font-weight: 800;
}

[type="Submit"]:hover {
  color: black !important;
  background-color: var(--neongreen) !important;
}

[type="text"],
[type="email"] {
  -webkit-appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.25);
  background-color: rgba(0, 0, 0, 0.125) !important;
  color: rgba(0, 0, 0, 0.75) !important;
  padding: 1rem;
  margin: 0.5rem;
  cursor: pointer;
}

input[type="checkbox"]:not(:checked) + label,
input[type="checkbox"] + label {
  cursor: pointer;
  opacity: 0.5;
}

input[type="checkbox"]:checked + label {
  cursor: pointer;
  flex-grow: 3;
  opacity: 0.75;
}

input[type="checkbox"]:hover + label {
  opacity: 1;
}

[type="checkbox"]:not(:checked) + label > .item-details,
.item-details {
  transition: all 333ms ease-out;
  opacity: 0;
  display: none;
}

input[type="checkbox"]:checked + label > .item-details {
  opacity: 1;
  display: flex;
  align-items: center;
}

.show-it {
  opacity: 1 !important;
  display: flex !important;
  align-items: center !important;
}

.item-link {
  appearance: none;
  text-decoration: none;
  margin: 0;
  padding: 0;
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  flex-grow: 1;
  transition: all 333ms ease-out;
  color: var(--words);
  background-position: center;
  background-size: cover;
}

.footer-box {
  color: var(--words);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  /*background-color: rgb(0, 0, 0);*/
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1rem;
}

.modal-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  margin: auto;
  padding: 2rem;
  border: 2px solid var(--neongreen);
  max-width: 90%;
}

.modal-content p {
  text-align: center;
}

#close-what {
  color: var(--neongreen);
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}

#close-what:hover,
#close-what:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

form {
  display: block;
  margin: 1rem;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
}

@media screen and (orientation: portrait) {
  /*.flexbox-main {*/
  /*    height: 90vh;*/
  /*}*/

  .flexbox-items {
    display: flex;
    flex-direction: column;
    /*justify-content: space-between;*/
  }

  .item-link {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
  }
  

}
