@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
  --background-color: #7C604A;
  --content-background-color: #ffffff;

  --text-color: #000000;
  --sidebar-text-color: #000000;
  --link-color: #E1D2AF;
  --link-color-hover: #3F0B19;

  --font: Open Sans, sans-serif;
  --heading-font: Georgia, serif;
  --font-size: 14px;

  --margin: 10px;
  --padding: 20px;
  --border: 2px solid #000000;
  --round-borders: 0px;
  --sidebar-width: 200px;
}


* {
  box-sizing: border-box;
}

body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  line-height: 1.2;
  background-image: url("background.jpg");
  
}


/* Layout */

.layout {
  width: 1000px;
  display: grid;
  grid-gap: var(--margin);
  grid-template: "header" auto "main" auto "footer" auto / auto;
}

main {
  grid-area: main;
  overflow-y: auto;
  padding: var(--padding);
  background: #D1C2B0;
  border: var(--border);
  border-radius: var(--round-borders);
}

.main-content {
  border: 3px outset #E1D2AF;
}


/* Header */

.site-header {
    width: 100%;
    height: 25vh;
    background-image: url('banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    border-radius: 27px;
}

header {
  grid-area: header;
  font-size: 1.2em;
  border: 3px outset #E1D2AF;
  border-radius: 30px;
}

/* Buttons */

.homebutton {
    position: relative;
    top: 300px;
    right: 310px;
    background-color: #7D394D;
    border-style: outset;
    color: #E1D2AF;
    cursor: pointer;
    border-radius: 7px;
    padding: 12px 60px;
    font-size: 16px;
    text-decoration: none;
    font-family: Georgia, serif;
}
.button1img {
  position: relative; 
  top: 250px; 
  right: 490px;
  max-width: 100%;
  transition: transform 0.5s ease;
}

.button1img:hover {
  transform: rotate(-15deg);
}

.biosbutton {
    position: relative;
    top: 400px;
    right: 544px;
    background-color: #7D394D;
    border-style: outset;
    color: #E1D2AF;
    cursor: pointer;
    border-radius: 7px;
    padding: 12px 60px;
    font-size: 16px;
    text-decoration: none;
    font-family: Georgia, serif;
    white-space:nowrap;
}
.button2img {
  position: relative; 
  top: 350px;
  right: 785px;
  max-width: 100%;
  transition: transform 0.5s ease;
}

.button2img:hover {
  transform: rotate(-15deg);
}

.relationbutton {
    position: relative;
    top: 500px;
    right: 840px;
    background-color: #7D394D;
    border-style: outset;
    color: #E1D2AF;
    cursor: pointer;
    border-radius: 7px;
    padding: 12px 60px;
    font-size: 16px;
    text-decoration: none;
    font-family: Georgia, serif;
}
.button3img {
  position: relative; 
  top: 455px;
  right: 1065px;
  max-width: 100%;
  transition: transform 0.5s ease;
}

.button3img:hover {
  transform: rotate(-15deg);
}

.fanworksbutton {
    position: relative;
    top: 600px;
    right: 1120px;
    background-color: #7D394D;
    border-style: outset;
    color: #E1D2AF;
    cursor: pointer;
    border-radius: 7px;
    padding: 12px 60px;
    font-size: 16px;
    text-decoration: none;
    font-family: Georgia, serif;
}

.button4img {
  position: relative; 
  top: 550px;
  right: 1325px; 
  max-width: 100%;
  transition: transform 0.5s ease;
}

.button4img:hover {
  transform: rotate(-15deg);
}

.spiraldance {
  position: relative;
  margin-left: auto;
  top: 100px;
}

/* Decorations */





/* Nav */


nav {
  margin-bottom: 3em;
}

nav .sidebar-title {
  margin-bottom: 0.5em;
}

nav ul {
  margin: 0 -5px;
  padding: 0;
  list-style: none;
  user-select: none;
}

nav ul li {
  margin-bottom: 0;
}

nav > ul li > a,
nav > ul li > strong {
  display: inline-block;
}

nav > ul li > a,
nav > ul li > details summary,
nav > ul li > strong {
  padding: 5px 10px;
}

nav > ul li > a.active,
nav > ul li > details.active summary {
  font-weight: bold;
}

nav ul summary {
  cursor: pointer;
}

nav ul ul li > a {
  padding-left: 30px;
}

/* NAVIGATION IN HEADER */

header nav {
  margin-bottom: 0;
}

header nav ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}

header nav ul li {
  position: relative;
}

header nav ul li:first-child > a {
  padding-left: 0;
}

header nav ul li:last-child > a {
  padding-right: 0;
}

/* Subnavigation (Drop-Down): */

header nav ul ul {
  background: var(--content-background-color);
  display: none;
  position: absolute;
  top: 100%;
  left: 10px;
  padding: 0.5em;
  z-index: 1;
  border: var(--border);
  min-width: 100%;
  box-shadow: 0px 1px 5px rgba(0,0,0,0.2);
}

header nav ul li:hover ul,
header nav ul li:focus-within ul {
  display: block;
}

header nav ul li strong {
  color: var(--link-color);
  text-decoration: underline;
  font-weight: normal;
}

header nav ul ul li a {
  display: block;
  padding-left: 0;
  padding-right: 0;
}



/* -------------------------------------------------------- */
/* CONTENT */
/* -------------------------------------------------------- */

main {
  line-height: 1.5;
}

main a,
main a:visited {
  color: var(--link-color);
}

main a:hover,
main a:focus {
  color: var(--link-color-hover);
  text-decoration-style: wavy;
}

main p,
main .image,
main .full-width-image,
main .two-columns {
  margin: 0.75em 0;
}

main ol,
main ul {
  margin: 0.5em 0;
  padding-left: 1.5em;
}

main ol li,
main ul li {
  margin-bottom: 0.2em;
  line-height: 1.3;
}

main ol {
  padding-left: 2em;
}

main blockquote {
  background: rgba(0, 0, 0, 0.1);
  padding: 15px;
  margin: 1em 0;
  border-radius: 10px;
}

main pre {
  margin: 1em 0 1.5em;
}

main code {
  text-transform: none;
}

main center {
  margin: 1em 0;
  padding: 0 1em;
}

main hr {
  border: 0;
  border-top: var(--border);
  margin: 1.5em 0;
}

/* HEADINGS: */

main h1,
main h2,
main h3,
main h4,
main h5,
main h6 {
  font-family: var(--heading-font);
  margin-bottom: 0;
  line-height: 1.5;
}

main h1:first-child,
main h2:first-child,
main h3:first-child,
main h4:first-child,
main h5:first-child,
main h6:first-child {
  margin-top: 0;
}

main h1 {
  font-size: 1.5em;
}

main h2 {
  font-size: 1.4em;
}

main h3 {
  font-size: 1.3em;
}

main h4 {
  font-size: 1.2em;
}

main h5 {
  font-size: 1.1em;
}

main h6 {
  font-size: 1em;
}

/* COLUMNS: */

.two-columns {
  display: flex;
}

.two-columns > * {
  flex: 1 1 0;
  margin: 0;
}

.two-columns > *:first-child {
  padding-right: 0.75em;
}

.two-columns > *:last-child {
  padding-left: 0.75em;
}



/* Images */

.image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

.full-width-image {
  display: block;
  width: 100%;
  height: auto;
}

.images {
  display: flex;
  width: calc(100% + 5px + 5px);
  margin-left: -5px;
  margin-right: -5px;
}

.images img {
  width: 100%;
  height: auto;
  padding: 5px;
  margin: 0;
  overflow: hidden;
}

.container {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.flex-container {
  display: flex; 
    justify-content: center;
    border: 2px solid #000000;
    width: 406px;
    border-radius: 20px;
    background: #D1C2B0;
    border-style: outset;
}

.flex-container img {
    max-width: 400px;
    height: 600px;
    display: block;
    border-radius: 17px;
}

/* -------------------------------------------------------- */
/* ACCESSIBILITY */
/* -------------------------------------------------------- */

/* please do not remove this. */

#skip-to-content-link {
  position: fixed;
  top: 0;
  left: 0;
  display: inline-block;
  padding: 0.375rem 0.75rem;
  line-height: 1;
  font-size: 1.25rem;
  background-color: var(--content-background-color);
  color: var(--text-color);
  transform: translateY(-3rem);
  transition: transform 0.1s ease-in;
  z-index: 99999999999;
}

#skip-to-content-link:focus,
#skip-to-content-link:focus-within {
  transform: translateY(0);
}

/* -------------------------------------------------------- */
/* MOBILE RESPONSIVE */
/* -------------------------------------------------------- */

/* CSS Code for devices < 800px */
@media (max-width: 800px) {
  body {
    font-size: 14px;
  }
  
.desktop-only-image {
    display: none
}

  .layout {
    width: 100%;
    grid-template: "header" auto  "leftSidebar" auto "main" auto "footer" auto / 1fr;
  }
  
  .right-sidebar { 
    display: none;
  }

  aside {
    border-bottom: 1px solid;
    padding: 9px;
    font-size: 0.9em;
  }

  
  nav {
    padding: 0;
  }

  nav > ul {
    padding-top: 0.5em;
  }

  nav > ul li > a,
  nav > ul li > details summary,
  nav > ul li > strong {
    padding: 0.5em;
  }

  main {
    max-height: none;
    padding: 15px;
  }

  .images {
    flex-wrap: wrap;
  }

  .images img {
    width: 100%;
  }

  #skip-to-content-link {
    font-size: 1rem;
  }
}
