/* VARIABLES */
:root {
  /* Background Colors: */
  --background-color: #eeeeee00;
  --content-background-color: #ffffff;
  --sidebar-background-color: #ffffff00;

  /* Text Colors: */
  --text-color: #000000;
  --sidebar-text-color: #000000;
  --link-color: #ffffff;
  --link-color-hover: #000000;

  /* Text: */
  --font: times new roman;
  --heading-font: Georgia, serif;
  --font-size: 14px;
  color: #5b2a23;

  /* Other Settings: */
  --margin: 10px;
  --padding: 20px;
  --border: 2px solid #000000;
  --round-borders: 0px;
  --sidebar-width: 200px;
}

.special-elite-regular {
  font-family: "Special Elite", system-ui;
  font-weight: 400;
  font-style: normal;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
  scrollbar-width: auto;
  scrollbar-color: #dcccab #65705f;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 16px;
}

*::-webkit-scrollbar-track {
  background: #65705f;
}

*::-webkit-scrollbar-thumb {
  background-color: #65705f;
  border-radius: 10px;
  border: 3px none #dcccab;
}

/* BASICS */

* {
  box-sizing: border-box;
}

body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  font-size: var(--font-size);
  margin: 0;
  padding: var(--margin);
  color: var(--text-color);
  font-family: var(--font);
  line-height: 1.2;
  background-image: url(/images/frames/egg.png), url(/images/frames/egg.png), url(/images/backgrounds/orange_cloth.jpg);
    background-size: auto, auto 200px, auto;
    background-position-y: top, bottom;
    background-repeat: repeat-x, repeat-x, repeat;
    background-attachment: fixed;
    cursor:url(/images/icons/gauntlet.png), auto;

}

::selection {
  /* (Text highlighted by the user) */
  background: #cc8179;
}

mark {
  /* Text highlighted by using the <mark> element */
  text-shadow: 1px 1px 4px var(--link-color);
  background-color: inherit;
  color: var(--text-color);
}

/* Links: */
a {
  text-decoration: none;
    cursor:url(/images/icons/gauntlet.png), auto;
}

a,
a:visited {
  color: var(--link-color);
}

a:hover,
a:focus {
  color: var(--link-color-hover);
  text-decoration: none;
}

/* LAYOUT */

.layout {
  width: 100%;
  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);
  border-radius: var(--round-borders);
}

/* HEADER */

header {
  grid-area: footer;
  font-size: 1.2em;
  border: var(--border);
  border-radius: var(--round-borders);
  background-image: url(/images/backgrounds/plain_cloth.jpg);
  background-size: contain;
  border: 30px solid transparent;
  border-image: url(/images/frames/whitelace.png) 34 round;
  background-clip: padding-box;
  margin-bottom: 20px;
  margin-top: -30px;
}

.header-content {
  padding: var(--padding);
}

.header-content a {
  color: black;
}

.header-content a:hover {
  color: rgb(255, 255, 255);
}

/* Site Button: */

.site-button {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-button textarea {
  font-family: monospace;
  font-size: 0.7em;
}

/* FOOTER */

.footer {
  grid-area: footer;
  border-radius: var(--round-borders);
  overflow: hidden;
  font-size: 0.75em;
  padding: 15px;
  display: flex;
  justify-content: center;
}

footer a,
footer a:visited {
  color: var(--link-color);
}

footer a:hover,
footer a:focus {
  color: var(--link-color-hover);
}

/* NAVIGATION */

nav {
  margin-bottom: 3em;
}

nav a {
  color: #000000;
}

nav .sidebar-title {
  margin-bottom: 0.5em;
}

nav ul {
  margin: 0 -5px;
  padding: 0;
  list-style: none;
  user-select: none;
  justify-content: center;
  font-family: "Special Elite", system-ui;
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgb(200, 161, 99);
}

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;
}

/* CONTENT 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;
}

/* -------------------------------------------------------- */
/* 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;
  }

  .layout {
    width: 100%;
    grid-template: "header" auto "leftSidebar" auto "main" auto "footer" auto / 1fr;
    /* Confused by the grid? Check out my tutorial: https://petrapixel.neocities.org/coding/positioning-tutorial#grid */
  }


  .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;
  }

  .owl{
    font-size: 1rem;
  }

 .framed-collage{
    font-size: 1rem;
  }
  
   .art-resources{
    font-size: 1rem;
  }
  
   .print{
    font-size: 1rem;
  }
  
   .textile-art{
    font-size: 1rem;
  }
  

}

/* -------------------------------------------------------- */
/* Site intro area
/* -------------------------------------------------------- */
.center-container {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
}

.room-background {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  background-image: url(/images/backgrounds/wall.jpg);
  width: 90%;
 border: 2em solid;
    border-image-slice: 130 125 125 130;
    border-image-outset: 0px 0px 0px 0px;
    border-image-repeat: stretch stretch;
    border-image-source: url(/images/frames/painting_frame.png);
}

.navigation {
  padding-top: 10%;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  transform: translate(-50%, -50%);
}

.owl{
  position: fixed;
  top: ;
  left: ;
}

.framed-collage {
  position: fixed;
  top: ;
  left: ;
}

.art-resources {
  position: fixed;
  top: ;
  left:;
}

.print {
  position: fixed;
  top: ;
  left: ;
}

.textile-art {
  position: fixed;
  top: ;
  left: ;
}

.digital {
  background-image: url(/images/assets/framed_owl.PNG);
  background-repeat: no-repeat;
  background-position: center;
  max-width: 25vw;
  min-height: 25vw;
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  translate: 40% -25%;
  z-index: 4;
  font-family: "special elite";
  font-size: 2em;
  text-shadow: 1px 1px 2px #000000;
}

.digital:hover {
  -webkit-transform: rotate(6deg);
  -moz-transform: rotate(6deg);
  -o-transform: rotate(6deg);
}

.collage {
  background-image: url(/images/assets/framed_collage.PNG);
  background-repeat: no-repeat;
  background-position: center;
  max-width: 32vw;
  min-height: 32vw;
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  translate: 50% -27%;
  z-index: 4;
  font-family: "special elite";
  font-size: 2rem;
  text-shadow: 1px 1px 2px #000000;
}

.collage:hover {
  -webkit-transform: rotate(6deg);
  -moz-transform: rotate(6deg);
  -o-transform: rotate(6deg);
}

.resources {
  background-image: url(/images/assets/framed_pallette.png);
  background-repeat: no-repeat;
  background-position: center;
  max-width: 23vw;
  min-height: 23vw;
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  translate: 270% -270%;
  z-index: 4;
  font-family: "special elite";
  font-size: 2rem;
  text-shadow: 1px 1px 2px #000000;
}

.resources:hover {
  -webkit-transform: rotate(6deg);
  -moz-transform: rotate(6deg);
  -o-transform: rotate(6deg);
}

.printmaking {
  background-image: url(/images/assets/framed_print.PNG);
  background-repeat: no-repeat;
  background-position: center;
  max-width: 25vw;
  min-height: 25vw;
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  translate: 230% -245%;
  z-index: 4;
  font-family: "special elite";
  font-size: 2rem;
  text-shadow: 1px 1px 2px #000000;
}

.printmaking:hover {
  -webkit-transform: rotate(6deg);
  -moz-transform: rotate(6deg);
  -o-transform: rotate(6deg);
}

.textiles {
  background-image: url(/images/assets/framed_embroidery.PNG);
  background-repeat: no-repeat;
  background-position: center;
  max-width: 25vw;
  min-height: 25vw;
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  translate: 140% -440%;
  z-index: 4;
  font-family: "special elite";
  font-size: 2rem;
  text-shadow: 1px 1px 2px #000000;
}

.textiles:hover {
  -webkit-transform: rotate(6deg);
  -moz-transform: rotate(6deg);
  -o-transform: rotate(6deg);
}

#room {
  display: flex;
  place-items: center;
  width: 90%;
  height: auto;
}