body {
  color: #222;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 14px;
  margin: 0;
  padding: 0;
}

/* ===== TOP BAR ===== */
#top-bar {
  background-color: #E6E6E6;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  border-bottom: 4px solid #AEAEAE;
  padding: 0 20px;
  z-index: 1000;            /* layer order */
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);

  display: flex;
  align-items: center;
  overflow: hidden;
}

#WMicon-gif {
  height: 100%; /* fill the height of the top bar */
  max-height: 60px;
  width: auto; /* keep aspect ratio */
}
#name-image {
  height: 60%;
  max-height: 40px;
  width: auto;
  padding: 10px;
}

#top-bar h1 {
  margin: 0;
  font-size: 28px;
  color: #222;
}

/* ===== PAGE CONTENT ===== */
#page-content {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* ===== CONTAINERS ===== */
.container {
  background-color: #ffffff;
  padding: 30px;
  border: 1px solid #ccc;
  max-width: 600px;
  width: 90%;
  margin-bottom: 30px;
  border-radius: 10px;
  text-align: center;
}

/* ===== DESCRIPTION BOX ===== */
#description {
  background-color: #f7f7f7;
  border: 1px solid #ccc;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
}

#description p {
  margin: 0;
  font-size: 14px;
  color: #222;
  text-align: center;
}

#gif-container img {
  max-width: 100%;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 8px;
  
}
.about-container {
  background-color: #ffffff;
  padding: 30px;
  border: 1px solid #ccc;
  max-width: 600px;
  width: 90%;
  margin-bottom: 30px;
  border-radius: 10px;
}

/* Left side */
.about-text {
  flex: 2;
}

.about-text h2 {
  margin-top: 0;
  border-bottom: 1px solid #555;
  padding-bottom: 5px;
}

.about-text ul {
  list-style-type: square;
  padding-left: 20px;
}

/* Right side */
.about-image {
  flex: 1;
}

.about-image img {
  max-width: 100%;
  border: 2px solid #555;
}

/* ===== ABOUT SECT ===== */

.about-2 {
  padding: 0;
  background-color: #e6e6e6;
  border: 2px outset #999;
  font-size: 12px;
}

/* Header bar */
.about-header {
  background: linear-gradient(#cccccc, #999999);
  padding: 6px;
  text-align: center;
  font-weight: bold;
  border-bottom: 6px inset #777;
  letter-spacing: 2px;
}

/* Inner content */
.about-content {
  display: flex;
  padding: 12px;
  gap: 10px;
}

.about-normal {
  width: 100%;
  background-color: #ffffff;
  border: 2px inset #aaa;
  padding: 10px;
}
/* Left info box */
.about-left {
  width: 65%;
  background-color: #ffffff;
  border: 2px inset #aaa;
  padding: 10px;
}

.about-left ul {
  list-style-type: square;
  padding-left: 18px;
  margin: 0;
}

.about-left li {
  margin-bottom: 6px;
}

/* Right image box */
.about-right {
  width: 35%;
  background-color: #ffffff;
  border: 2px inset #aaa;
  padding: 8px;
  text-align: center;
}

.about-right img {
  max-width: 100%;
  border: 1px solid #000;
}

/* ===== IMAGE LINKS ===== */

.links-container {
  background-color: #ffffff;
  border: none;
  padding: 10px;
}

/* Flex layout only */
.image-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.image-flex a img {
  width: 120px;
  height: auto;
  border: none;
  padding: 0;
  background: none;
}
.image-flex a:hover img {
  filter: brightness(1.3);
}

/* LINKS BORDER */
.links-border {
  border: 10px outset #999;
  padding: 12px;
  display: inline-block;
  background-color: #ffffff;
}