/*FONT IMPORT*/
@import url("https://fonts.googleapis.com/css2?family=Architects+Daughter&display=swap");
/*VARIABLES*/
:root {
  /* Background Colors: */
  --background-color: #e9e8f6;
  /* Text Colors: */
  --text-color: #000000;
  --sidebar-text-color: #000000;
  --link-color: #543e90;
  --link-color-hover: #8457ff;
  --background-nav: #3F2B55;
  /* Text: */
  --font: Open Sans, sans-serif;
  --heading-font: "Architects Daughter", cursive;
  --font-size: 16px;
  /* Other Settings: */
  --margin: 16px;
  --padding: 24px;
  --border: 2px solid #3f2b55;
  --round-borders: 12px;
}

/* BASICS */
* {
  box-sizing: border-box;
}

body {
  background: var(--background-color);
  background-image: url("https://inkiart.neocities.org/img/background.png");
}

.header_title-name {
  font-family: var(--heading-font);
}

.title {
  font-family: var(--heading-font);
  background-color: rgba(132, 87, 255, 0.2549019608);
}

.subtitle {
  font-family: var(--heading-font);
  background-color: rgba(132, 87, 255, 0.2549019608);
  text-align: center;
}

a {
  text-decoration: underline;
  color: var(--link-color);
}
a:visited {
  color: var(--link-color);
}
a:hover, a:focus {
  color: var(--link-color-hover);
  text-decoration: none;
}

aside,
.content {
  padding: var(--padding);
  border: var(--border);
  border-radius: var(--round-borders);
  background: var(--background-color);
}

.dashed {
  border: none;
  border-top: 2px dashed rgb(63, 63, 63);
  opacity: 100%;
  margin: 1.5rem 0;
}

/*
 @media (max-width: 1024px) {}
 @media (max-width: 576px) {}
 */
header {
  padding: 1rem;
}

.header_navigation {
  background-color: var(--background-nav);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 10rem;
}
.header_navigation ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header_navigation ul li {
  position: relative;
  /* SUBMENU */
}
.header_navigation ul li a,
.header_navigation ul li strong {
  text-decoration: none;
  color: inherit;
}
.header_navigation ul li ul {
  position: absolute;
  top: 100%;
  left: 0;
  flex-direction: column;
  gap: 0;
  background: var(--background-nav);
  border-radius: 1rem;
  padding: 0.5rem 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
}
.header_navigation ul li ul li {
  padding: 0.5rem 1rem;
  white-space: nowrap;
}
.header_navigation ul li ul li a {
  display: block;
}
.header_navigation ul li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header_social {
  display: flex;
}
.header_social a {
  padding: 0 0.5rem;
  display: flex;
  align-items: center;
}

@media (max-width: 1024px) {
  .header_navigation ul {
    gap: 1rem;
  }
}
@media (max-width: 576px) {
  header {
    max-width: 80%;
  }
  .header_navigation {
    border-radius: 0.5rem;
    padding: 0.5rem 0;
  }
  .header_navigation ul {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .header_navigation ul li ul {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    padding: 0;
  }
  .header_social {
    margin-top: 1rem;
  }
}
footer {
  padding: var(--padding);
  border: var(--border);
  border-radius: var(--round-borders);
  background: var(--background-color);
  margin-top: 1rem;
  text-align: center;
  margin-bottom: 1rem;
}

/* SIDEBAR */
.left-sidebar {
  height: 100%;
}
.left-sidebar .sidebar-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.left-sidebar img {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  padding-bottom: 1rem;
}
.left-sidebar .profile-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.left-sidebar .profile-buttons img {
  padding: 5px;
}
.left-sidebar .changelog {
  width: 100%;
}
.left-sidebar .changelog_title {
  font-size: 16px;
  margin: 0;
  border: solid 1px #8457ff;
  border-radius: 16px;
  padding: 2px 2px 2px 6px;
}
.left-sidebar .changelog p {
  padding: 0;
  font-size: 14px;
}
.left-sidebar .changelog_item {
  height: 130px;
  width: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}

/*MAIN CONTENT*/
.drawings {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.5rem 0;
}
.drawings_preview {
  width: 18%;
  border-radius: 1.2rem;
  overflow: hidden;
  padding: 5px;
  border: 2px solid #8457ff;
}
.drawings_preview img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}
@media (max-width: 1024px) {
  .drawings {
    gap: 10px;
  }
  .drawings_preview {
    width: 30%;
  }
}
@media (max-width: 576px) {
  .drawings {
    gap: 10px;
  }
  .drawings_preview {
    width: 100%;
  }
}

/*GUESTBOOK*/
.iframe {
  margin: 0;
  padding: 0;
  border: none;
  /* Also removes the default border */
}

.guestbook {
  height: 600px;
  width: 100%;
  margin: 0;
}/*# sourceMappingURL=main.css.map */