:root{
 --dark: #080D10;
 --plum: #571948;
 --violet: #4F355A;
 --lilac: #9066A6;
 --lavender: #C8BBE9;
}

body {
  background: #571948;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100vh;
  background: linear-gradient(0deg, rgb(8, 6, 8) 0%, rgba(144, 102, 166, 1) 100%);
  padding-left: 30px; 
}

h1 {
  color: var(--lavender);
  font-family: "Astloch", system-ui;
  font-style: normal;
  font-size: 50pt;
  margin-bottom: 20px;
  margin-top: 20px;
}


.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

h1{
  color: var(--lavender);
  font-family: "Astloch", system-ui;
  font-style: normal;
  font-size: 50pt;
  margin-bottom: 20px; 
  text-shadow: #4b225c 2px 2px 4px;
}

.hotbar{
  font-family: "Jost", sans-serif;
  color: var(--plum);
  text-align: left;
  margin-top: 40px;
  text-decoration: underline var(--lavender) 3px;
  text-underline-offset: 15px;
}

a{
  text-decoration: none;
  color: var(--lavender);
  font-size: 20pt;
  font-family: "Jost", sans-serif;
}

a:hover{
  color: var(--plum);
  text-decoration: underline var(--plum) 3px;
  text-underline-offset: 15px;
  cursor: pointer;
}

footer{
  margin-top: 100px;
  font-family: "Jost", sans-serif;
  font-size: 20pt;
  color: var(--plum);
  text-decoration: underline var(--lavender) 3px;
  text-underline-offset: 15px;
}

.hello {
  width: 80%;
  margin-top: 15px;
  padding: 20px;
  background: linear-gradient(135deg, #9066A6, #C8BBE9);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-family: 'Jost', sans-serif;
  line-height: 1.6;
  color: #4b225c;

}

.hello:hover {
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #C8BBE9, #9066A6);
  transform: translateX(15px);
  transition: 0.3s;

}

.hello h2 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #571948;
}

.hello p {
  font-size: 1.2em;
  margin-bottom: 15px;
}

.pfp {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

button{
  font-family: "Jost", sans-serif;
  font-size: 15pt;
  color: var(--lavender);
  background-color: transparent;
  order: 2px solid var(--lavender);
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
}

button:hover{
  background-color: var(--lavender);
  color: var(--plum);
  transition: 0.5s;
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


.tab-content{
  font-family: "Jost", sans-serif;
  color: var(--lavender);
}

  .model-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }
  .art-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .art-gallery .hello {
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #9066A6, #C8BBE9);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-family: 'Jost', sans-serif;
    color: #4b225c;
  }
  .art-gallery img {
    max-width: 100%;
    max-height: 70%;
    object-fit: contain;
    border-radius: 5px;
  }
  .art-gallery img::after {
    content: "Snowdoll";
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 12px;
    color: rgba(144, 102, 166, 0.8);
    pointer-events: none;
  }