/* BODY */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #cfd8e6;
}

/* TOP BAR */
.topbar {
  background: #5c7fa8;
  color: white;
  padding: 10px;
  font-weight: bold;
  font-size: 14px;
}

.nav {
  background: #7fa1c4;
  padding: 8px;
  text-align: left;
  font-size: 14px;
}

.nav a {
  color: white;
  text-decoration: none;
  margin: 0 12px;
}

.nav a:hover {
  text-decoration: underline;
}

.nav a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
}

.nav a:hover {
  text-decoration: underline;
}

/* MAIN LAYOUT (SMALLER + CENTERED) */
.container {
  width: 750px;
  margin: 20px auto;
  display: flex;
  gap: 12px;
}

/* COLUMNS */
.left {
  width: 240px;
}

.right {
  flex: 1;
}

/* BOXES */
.box {
  background: #f7f7f7;
  border: 2px solid #4d6f99;
  margin-bottom: 12px;
}

/* BOX HEADER */
.box-header {
  background: #6f93bd;
  color: white;
  padding: 6px;
  font-weight: bold;
  font-size: 13px;
}

/* BOX CONTENT */
.box-content {
  padding: 10px;
  font-size: 13px;
}

/* PROFILE IMAGE */
.pfp {
  width: 100%;
  border-bottom: 2px solid #4d6f99;
}

/* BLOG */
.blog-entry {
  margin-bottom: 10px;
}

/* TABLES (for about page) */
table {
  width: 100%;
  border-collapse: collapse;
}

td {
  border: 1px solid #4d6f99;
  padding: 6px;
  font-size: 13px;
}

/* IMAGES */
img {
  width: 140px;
  margin: 5px;
  border: 2px solid #4d6f99;
}
.header-decor h1 {
  text-shadow: 0 0 8px #ffffff, 0 0 12px #7fa1c4;
  font-style: italic;
  font-weight: normal;
}


.blinkie {
  width: auto !important;
  height: auto !important;
  border: none !important;
  margin-right: 5px !important;
}


.overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}


.overlay:target {
  display: flex;
}


.big-image {
  width: auto !important; 
  max-width: 90%;
  max-height: 80%;
  border: 3px solid #6f93bd !important;
  box-shadow: 0 0 20px rgba(111, 147, 189, 0.5);
}

/* THE CLOSE BUTTON */
.close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #f7f7f7;
  font-size: 50px;
  text-decoration: none;
  font-family: Arial, sans-serif;
}

.close:hover {
  color: #7fa1c4;
}