:root {
    --bg1: #f7e4c1;
    --bg2: #ebd4a9;
    --bg3: #9e8a77;
    --bg4: #30271c;
    --text: #1c1711;
    --accent1: #59B3AA;
    --accent2: #2A7190;
  }

@font-face {
    font-family: 'Tangerine';
    src: url('Tangerine-Bold.ttf') format('truetype');
}
  
  html,
  body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
  }
  
  * {
    box-sizing: border-box;
  }
  
  body {
    padding: 6rem;
    font-family: sans-serif;
    color: var(--text);
    line-height: 1.3;
  }
  
  ::selection {
    background-color: var(--accent1);
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "Tangerine", cursive;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 2px;
    text-shadow: 1px 1px 1px var(--bg3);
    margin-top: 0;
    margin-bottom: 1.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.75rem;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  main a {
    color: var(--accent2);
    text-decoration: none;
    border-bottom: 1px dashed;
    transition: 0.5s;
  }
  
  main a:hover,
  main a:focus {
    color: var(--accent1);
  }
  
  main p,
  main li {
    text-shadow: 1px 1px 1px var(--bg2);
    letter-spacing: 1px;
  }
  
  hr {
    border: 0;
    border-top: 1px dashed var(--bg4);
    margin: 2rem auto;
    position: relative;
    overflow: visible;
    width: 90%;
  }
  
  hr::before {
    content: '♦';
    color: var(--bg4);
    display: inline-block;
    position: absolute;
    left: 50%;
    transform: translateY(-1rem);
    z-index: 1;
    font-size: 1.5rem;
    text-shadow: 1px 1px 1px var(--bg3);
  }
  
  .bg {
    position: fixed;
    inset: 0;
    z-index: 1;
  }
  
  .bg > svg {
    width: 100%;
    height: 100%;
  }
  
  .wrapper {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    height: 100%;
    padding: 2rem;
  }
  
  .wrapper > svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }
  
  .wrapper::after {
    content: '';
    position: absolute;
    inset: -0.5rem;
    background: radial-gradient(circle, var(--bg4) 70%, transparent 100%);
    opacity: 0.6;
    filter: blur(10px) saturate(30%);
  }
  
  .wrapper-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    overflow-y: auto;
    scrollbar-color: var(--accent2) transparent;
    scrollbar-width: thin;
  }
  
  .wrapper-inner::-webkit-scrollbar {
    width: 8px;
  }
  
  .wrapper-inner::-webkit-scrollbar-track {
    background: transparent;
  }
  
  .wrapper-inner::-webkit-scrollbar-thumb {
    background: var(--accent2);
    border-radius: 0;
  }
  
  header {
    text-align: center;
    padding: 2rem 0;
  }
  
  header h1 {
    font-size: 4rem;
    letter-spacing: 5px;
    margin: 0;
  }
  
  nav {
    font-family: "Tangerine", cursive;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    font-size: 2rem;
    text-shadow: 1px 1px 1px var(--bg3);
  }
  
  nav ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
  }
  
  nav ul li {
    flex: 1 1 0;
  }
  
  nav ul li:nth-of-type(even) {
    transform: translateY(-20%);
  }
  
  nav ul li:nth-of-type(odd) {
    transform: translateY(20%);
  }
  
  nav ul li a {
    text-decoration: none;
    color: var(--bg4);
    border-bottom: 1px dashed var(--bg4);
    transition: 0.5s;
  }
  
  nav ul li a::before {
    content: '◊';
    margin-right: 0.5rem;
    transition: 0.5s;
  }
  
  nav ul li a:hover::before,
  nav ul li a:focus::before {
    text-shadow: 0 0 3px var(--accent1), 0 0 3px var(--accent1), 0 0 5px var(--accent1), 0 0 5px var(--accent1);
  }
  
  main {
    margin: 3rem 1rem;
  }
  
  @media screen and (max-width: 1200px) {
    body {
      padding: 5rem;
    }
  }
  
  @media screen and (max-width: 1000px) {
    body {
      padding: 4rem;
    }
    
    header {
      padding: 1rem 0;
    }
    
    nav ul {
      display: block;
      text-align: left;
      margin: 0 1rem;
    }
    
    nav ul li:nth-of-type(even) {
      transform: translateX(1rem);
    }
  
    nav ul li:nth-of-type(odd) {
      transform: none;
    }
    
    main {
      margin: 2rem 1rem;
    }
  }
  
  @media screen and (max-width: 900px) {
    body {
      padding: 3rem;
    }
  }
  
  @media screen and (max-width: 800px) {
    body {
      padding: 2rem;
    }
  }
  
  @media screen and (max-width: 700px) {
    body {
      padding: 1rem;
    }
  }
  
  @media screen and (max-width: 600px) {
    body {
      padding: 0.5rem;
    }
  }
  
  @media screen and (max-width: 500px) {
    body {
      padding: 0;
    }
    
    .wrapper {
      padding: 0;
    }
    
    .wrapper::after {
      display: none;
    }
    
    .wrapper-inner {
      padding: 1rem;
    }
  }
  