:root {
  --header-image: url('https://laikgheist.neocities.org/lg4.png');
  --body-bg-image: url('https://laikgheist.neocities.org/backgrounds/melbmappurp.png');
  --content: #43256E;
}

@font-face {
  font-family: Draxel;
  src: url('https://laikgheist.neocities.org/fonts/Draxel.ttf');
}

@font-face {
  font-family: Draxel;
  src: url('https://laikgheist.neocities.org/fonts/Draxel.ttf');
  font-weight: bold;
}

@font-face {
  font-family: Draxel;
  src: url('https://laikgheist.neocities.org/fonts/Draxel.ttf');
  font-style: italic;
}

@font-face {
  font-family: Draxel;
  src: url('https://laikgheist.neocities.org/fonts/Draxel.ttf');
  font-style: italic;
  font-weight: bold;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Draxel', sans-serif;
  background-color: #08031A;
  background-image: var(--body-bg-image);
  background-size: 100%;
  color: #fceaff;
}

#container {
  max-width: 900px;
  margin: 0 auto;
}

#container a {
  color: #aa68ad;
  font-weight: bold;
}

#header {
  width: 100%;
  height: 268px;
  background-color: #5e4e8c;
  background-image: var(--header-image);
  background-size: 100%;
}

#headerArea {
  margin-bottom: 10px;
}

#navbar {
  height: 40px;
  background-color: #13092D;
  width: 100%;
  margin-bottom: 10px;
}

#navbar ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style-type: none;
  justify-content: space-evenly;
}

#navbar li {
  padding-top: 10px;
}

#navbar li a {
  color: #aa68ad;
  font-weight: 800;
  text-decoration: none;
}

#navbar li a:hover {
  color: #a49cba;
  text-decoration: underline;
}

#flex {
  display: flex;
}

main {
  background-color: #8062a7;
  flex: 1;
  padding: 20px;
  order: 2;
}

aside {
  background-color: #322057;
  width: 200px;
  padding: 20px;
  font-size: smaller;
  order: 1;
  margin-right: 10px;
}

#rightSidebar {
  order: 3;
}

h1, h2 {
  color: #ED64F5;
}
h3 {
  color: #6600ff;
}


h1 {
  font-size: 25px;
}

strong {
  color: #ED64F5;
}

.box {
  background-color: #13092D;
  border: 1px solid #ED64F5;
  padding: 10px;
}

footer {
  background-color: #13092D;
  width: 100%;
  height: 40px;
  padding: 10px;
  text-align: center;
}

#topBar {
  width: 100%;
  height: 30px;
  padding: 10px;
  font-size: smaller;
  background-color: #13092D;
}

/* Responsive layout */
@media only screen and (max-width: 800px) {
  #flex {
    flex-wrap: wrap;
  }
 

  aside {
    width: 100%;
    order: 2;
  }

  main {
    order: 1;
  }

  #rightSidebar {
    order: 3;
  }

  #navbar ul {
    flex-wrap: wrap;
  }
  .center { display: block; margin-left: auto; margin-right: auto; width: 50%; } 
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  padding: 20px;
}

.gallery img {
  width: 300px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}