body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding-bottom: 2rem;
  box-sizing: border-box;
  font-family: monospace;
  background-color: #00aae4;
  background: linear-gradient(180deg, light-dark(#00aae4, black) 0%, light-dark(#6cdaff, rgb(59, 0, 87)) 100%);
}

#idCard {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: min(0.5vw, 3rem);
  box-sizing: border-box;
  border-radius: 7.5px;
  color: white;
}
#idCard img {
  width: 100%;
  max-width: 15rem;
  aspect-ratio: 1/1;
  border-radius: 100%;
  filter: grayscale(50%) contrast(110%);
}
#idCard .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  text-align: center;
  text-wrap: wrap;
  word-break: normal;
}
#idCard .text h1 {
  font-size: min(15vw, 5rem);
  font-weight: bold;
  letter-spacing: 0.5rem;
  line-height: 0.88em;
  font-family: georgia, serif;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
#idCard .text #subHeader {
  width: 90vw;
  text-wrap: wrap;
  word-break: normal;
  font-size: min(4.5vw, 1.1rem);
}
#idCard .text #subHeader a {
  color: inherit;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-left: 5vw;
  padding-right: 5vw;
  border-radius: 7.5px;
  color: white;
}
.content #sheet {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  border-radius: 7.5px;
}
.content #sheet .section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  box-sizing: border-box;
  margin-left: 0;
  margin-right: 0;
  border-radius: 7.5px;
}
.content #sheet .section h2 {
  width: 100%;
  margin: 0;
  margin-bottom: 1.75rem;
  font-weight: normal;
  line-height: 1em;
  text-align: left;
}
.content #sheet .section nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  height: 100%;
}
.content #sheet .section nav a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: min(5vw, 1.5rem);
  padding: 1.25rem;
  box-sizing: border-box;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.302);
  border-radius: 5px;
  text-decoration: none;
  color: black;
  background-color: white;
}
.content #sheet .section nav a h3 {
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.content #sheet .section nav a h3 .version {
  font-weight: normal;
  opacity: 50%;
}
.content #sheet .section nav a .description {
  text-wrap: wrap;
}
.content #sheet .section nav a:hover {
  transition-duration: 0.1s;
  cursor: pointer;
  background-color: rgb(209, 209, 209);
}
.content #socials {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: min(2vw, 0.5rem);
  box-sizing: border-box;
  text-decoration: none;
  color: white;
}
.content #socials .email {
  text-decoration: inherit;
  color: inherit;
  font-size: min(1rem, 4.5vw);
}
.content #socials .icons {
  display: flex;
  flex-direction: row;
  margin-top: 0.5rem;
  margin-left: -1rem;
}
.content #socials .icons a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  margin-left: 1rem;
}
.content #socials .icons a img {
  width: 100%;
  aspect-ratio: 1/1;
  filter: grayscale(100%) brightness(10000%);
}
@media screen and (min-width: 33rem) {
  .content #socials {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .content #socials .icons {
    margin-left: 0;
  }
}/*# sourceMappingURL=index.css.map */