:root {
  --white: rgb(228, 228, 228);
  --header: rgb(79, 48, 121);
  --charDay: rgb(33, 33, 126);
  --photoGroup: #264e7f;
  --accent: orange;
  --link: rgb(216, 117, 255);
  --info: rgb(0, 0, 0); }

html,
body {
  color: var(--white);
  background-color: var(--charDay);
  min-height: 100vh;
  margin: 0;
  text-align: center;
  font-family: "Patrick Hand", cursive;
  font-size: 1.15rem;
  overflow-x: hidden; }

section {
  --pad-width: 22vw;
  padding: 0 var(--pad-width); }

section#header {
  background-color: var(--header); }

#header h1 {
  margin: 0 auto;
  text-align: center;
  padding: 0.7em 0 0.1em;
  font-weight: normal;
  font-size: 1.7em; }

#header h3 {
  margin: 0;
  font-weight: normal;
  font-size: 1.4em; }

.container {
  position: relative;
  height: 20vh; }

.wave {
  position: absolute;
  height: 76px;
  width: 100%;
  left: 0;
  background: var(--header);
  bottom: 0; }

.wave::before,
.wave::after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 100% 50%; }

.wave::before {
  width: 55%;
  height: 109%;
  background-color: var(--charDay);
  right: -1.5%;
  top: 60%; }

.wave::after {
  width: 55%;
  height: 100%;
  background-color: var(--header);
  left: -1.5%;
  top: 40%; }

section#charDay {
  padding-top: 8vh;
  padding-bottom: 5vh;
  background-color: var(--charDay);
  text-align: center;
  display: grid;
  column-gap: 2rem;
  justify-items: center;
  align-items: center;
  grid-template-areas: "photoGroup description" "photoGroup description" ". description"; }

#charDay div#photoGroup {
  grid-area: photoGroup;
  padding: 1.5rem;
  border-radius: 40px;
  background-color: var(--photoGroup);
  display: grid;
  column-gap: 2rem;
  justify-items: center;
  align-items: center;
  grid-template-areas: "picture names" "picture ." "picture titles"; }

div#photoGroup div#photo {
  grid-area: picture;
  margin: 0 auto;
  height: 320px;
  width: 218px;
  background-position: center;
  background-size: auto;
  background-repeat: no-repeat;
  box-shadow: 2px 3px 10px black;
  border-radius: 25px; }

div#photoGroup ul#names {
  grid-area: names;
  list-style: none;
  padding: 0; }

div#photoGroup ul#names li {
  text-transform: uppercase;
  color: var(--accent);
  font-size: 1.3rem; }

div#photoGroup ul#names li:first-of-type {
  font-size: 1.6rem; }

div#photoGroup ul#titles {
  grid-area: titles;
  list-style: none;
  padding: 0; }

div#photoGroup ul#titles li {
  color: var(--white); }

#charDay div#description {
  grid-area: description;
  padding: 0 1rem; }

.spoiler {
  color: transparent;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0 0.3rem;
  border-radius: 5px;
  transition: color 300ms ease-in; }

.show-spoiler {
  color: var(--accent);
  text-shadow: none;
  background-color: inherit; }

#spoiler-info {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  width: fit-content;
  margin: 0 auto !important;
  padding: 0.3rem 0.5rem;
  color: var(--accent);
  font-size: 1rem; }

.condensed {
  max-height: 400px;
  overflow-y: scroll;
  scrollbar-color: var(--header) gray;
  scrollbar-width: thin; }

.condensed::-webkit-scrollbar {
  width: 7px; }

.condensed::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px white;
  border-radius: 20px; }

.condensed::-webkit-scrollbar-thumb {
  background: var(--header);
  border-radius: 10px; }

#description p {
  margin: 0.5rem 0; }

#description a {
  color: var(--link);
  text-decoration: none; }

#description a:hover {
  text-decoration: underline; }

section#showLinks {
  display: grid;
  grid-template-columns: 3fr 2fr;
  column-gap: 2vw; }

section#showLinks div h1 {
  margin: 0 auto 0.2em; }

#social-bots {
  margin: 1em auto;
  width: fit-content;
  font-size: 1.7em;
  color: grey;
  padding: 0;
  list-style: none; }

#social-bots a {
  color: var(--link);
  text-decoration: none;
  transition: 200ms;
  border-bottom: 2px dotted var(--charDay); }

#social-bots a:hover {
  cursor: pointer;
  border-color: var(--link); }

.link-icon {
  height: 60px;
  width: 60px;
  margin: 0.1em;
  margin: 0.3em 0.2em;
  border-radius: 12px;
  outline: none;
  box-shadow: 5px 5px 4px 0px #111;
  transition: 200ms; }

.link-icon:hover {
  box-shadow: 5px 5px 4px 0px black; }

.hidden {
  display: none; }

@media (max-width: 1400px) {
  section#charDay {
    grid-template-areas: "photoGroup" "description";
    row-gap: 2vh; } }

@media (max-width: 900px) {
  section {
    --pad-width: 9vw; } }

@media (max-width: 600px) {
  :root {
    --header-height: 120px;
    --wave-height: 26px; }
  section {
    --pad-width: 2vw; }
  .container {
    height: var(--header-height); }
  #header h1 {
    font-size: 1.5rem;
    padding-top: calc(var(--header-height) / 5); }
  #header h3 {
    font-size: 1.4rem; }
  .wave {
    height: var(--wave-height);
    top: var(--header-height); }
  section#charDay {
    position: absolute;
    top: calc((2 * var(--wave-height)) + var(--header-height));
    padding: 20px 0 0 0; }
  #charDay div#photoGroup {
    grid-template-areas: "names" "picture" "titles"; }
  div#photoGroup ul#names {
    margin-top: 0; }
  div#photoGroup ul#titles {
    margin-bottom: 0; }
  #charDay div#description {
    border: 2px solid var(--header);
    border-radius: 10px;
    margin: 0 1rem;
    padding: 0.7rem; }
  section#showLinks {
    position: absolute;
    padding: 0 15vw 1.3em;
    grid-template-columns: 1fr;
    gap: 0.5em;
    justify-items: center;
    align-items: center; }
  #social-bots {
    position: absolute;
    margin: 0 auto;
    padding: 0 15vw 1em;
    text-align: center; } }
