.bg-frame {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  border: none;
  z-index: 0;
  pointer-events: none;
}

.bg-tint {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(6, 128, 0, 0.2);
  z-index: 0;
  pointer-events: none;
}

.content-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem 1rem;
}

.win95-popup {
  border: 2px solid #000;
  background-color: #c0c0c0;
  box-shadow: 4px 4px #808080;
  font-family: "MS Sans Serif", Tahoma, sans-serif;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.win95-header {
  background-color: #000080;
  color: white;
  padding: 4px 8px;
  font-weight: bold;
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.win95-title {
  flex-grow: 1;
  text-align: left;
}

.win95-content {
  background-color: #dfdfdf;
  padding: 1rem;
}

.small-box {
  width: 20.7em;
  text-align: center;
}

/* Make the small-box header GIF fill the box; keep bottom padding */
.small-box .win95-content {
  padding: 0 0 1rem 0; /* no top/side padding, keep 1rem bottom */
}
.small-box .win95-content > img {
  display: block;   /* remove inline-gap */
  width: 100%;
  height: auto;
  margin: 0;
}

.contact-box {
  width: 90vw;
  max-width: 600px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-icon {
  width: 24px;
  height: 24px;
}