:root {
  --header-image: url('https://bettysgraphics.neocities.org/images/backgrounds/059C.jpg');
  --body-bg-image: url('https://bettysgraphics.neocities.org/images/backgrounds/159.GIF');
  --content: #800000;
}

/* CUSTOM FONT */
@font-face {
  font-family: Aerospace;
  src: url('https://cyber-vampire.neocities.org/fonts/AEROSPA_.TTF') format("truetype");
}

/* GLOBAL BODY */
body {
  font-family: "Ubuntu Sans Mono", monospace;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  margin: 0;
  background-color: #08031A;
  background-size: 190px;
  background-image: var(--body-bg-image);
  color: #fceaff;

  cursor: url("https://iamevelyncross.neocities.org/icon.png") 0 0, auto;
}

* {
  box-sizing: border-box;
}

#container {
  max-width: 900px;
  margin: 0 auto;
}

#container a {
  color: #ED64F5;
  font-weight: bold;
}

/* HEADER */
#header {
  width: 100%;
  height: 188px;
  background-image: url('https://iamevelyncross.neocities.org/banner.png');
  background-size: 100%;
}

/* NAVBAR */
#navbar {
  height: 40px;
  background-color: #4d0000;
  width: 100%;
}

#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: #ff0000;
  font-weight: 800;
  text-decoration: none;
}

#navbar li a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* LAYOUT FLEX */
#flex {
  display: flex;
}

/* SIDEBARS */
aside {
  background-image: url('https://sadhost.neocities.org/images/tiles/num.gif');
  width: 200px;
  padding: 20px;
  font-size: smaller;
}

#leftSidebar {
  order: 1;
}

#rightSidebar {
  order: 3;
}

/* MAIN CONTENT */
main {
  background-color: #000000;
  flex: 1;
  padding: 20px;
  order: 2;
}

/* FOOTER */
footer {
  background-color: #000000;
  width: 100%;
  height: 40px;
  padding: 10px;
  text-align: center;
}

h1, h2, h3 {
  color: #ff0000;
}

h1 {
  font-size: 25px;
}

/* BOXES */
.box {
  border: 2px solid #ffffff;
  padding: 10px;
}

/* RESPONSIVE (mobile) */
@media only screen and (max-width: 800px) {
  #flex {
    flex-wrap: wrap;
  }
  aside {
    width: 100%;
  }
  main {
    order: 1;
  }
  #leftSidebar {
    order: 2;
  }
  #rightSidebar {
    order: 3;
  }
  #navbar ul {
    flex-wrap: wrap;
  }
}

.zoom-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.img-wrap {
  overflow: hidden;
  width: 250px;
  height: 180px;
  border-radius: 8px;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.img-wrap:hover img {
  transform: scale(1.15);
}
