@font-face {
  font-family: "LanaPixel";
  src: url("/src/fonts/LanaPixel.ttf") format("truetype");
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #fff;
  font-family: 'LanaPixel';
  background-color: #00000060;

}

h1:visited {
    text-decoration: none;
    color: white;
}

a:visited {
    text-decoration: none;
    color: white;
}
h1 {
    text-decoration: none;
    color: white;
    margin-top: 2%;
    margin-bottom: auto;
}

a {
    text-decoration: none;
    color: white;
}

.container {
  display: flex;
  width: 100vw;
  /* height: 1000px; */
  overflow: hidden;
}

.sidebar {
  width: 200px;
  background-color: #1a1a1a;
  padding: 1rem;
  position: sticky;
  top: 0;
  height: 100vh;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar h2 {
  margin-bottom: 1rem;
}

.sidebar nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar a {
  color: #ccc;
  text-decoration: none;
}

.sidebar a:hover {
  color: #fff;
}

.main {
  flex-grow: 1;
  overflow-y: auto;
  /* height: 100vh; */
}
.description {
  padding: 1rem;
  background-color: #000;
  text-align: center;
  font-size: 1rem;
}

.gallery {
  column-count: 2;
  column-gap: 0;
  width: 100%;
}

.gallery figure {
  break-inside: avoid;
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #ccc;
}

.gallery img {
  width: 100%;
  display: block;
  object-fit: cover;
  position: relative;
}

.gallery figcaption {
  font-size: 0.85rem;
  padding: 0.5rem;
  text-align: center;
}


#age-check {
  position: fixed;
  inset: 0;
  background-color: #fda3d8;
  color: white;
  z-index: 9999;
  display: flex;
  align-items: top;
  justify-content: center;
}

.age-content {
  text-align: center;
  background-color: #00000090;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 30px;
  max-height: 500px;
}

.age-content h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

#age-yes {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  background-color: #00000090;
  color: white;
  border: none;
  cursor: pointer;
  font-family: 'LanaPixel';
}

#age-yes:hover {
  background-color: #00000050;
}
#age-no {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  background-color: #00000090;
  color: white;
  border: none;
  cursor: pointer;
  font-family: 'LanaPixel';
}

#age-no:hover {
  background-color: #00000050;
}

.gallery a {
  text-decoration: none;
  color: inherit;
}


.goback {
        display: flex;
    font-size: small;
    justify-content:space-between;
}

.goback:visited {
    text-decoration: none;
    color: white
}

button {
    background-color: #8e2864;
    border-radius: 0px;
    border: solid 3px;
    color: white;
    font-family: 'LanaPixel';
    font-size: small;
}

input {
    background-color: #8e2864;
    border-radius: 0px;
    border: solid 3px;
    color: white;
    font-family: 'LanaPixel';
    font-size: small;
    max-width: 200px;
}
