body {
  margin: 0;
  padding: 20px;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  background-image: url(bg.gif);
  background-repeat: repeat;
  background-size: 65px 50px;
  color: #000080;
}

.page {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffcc;
  border: 6px double #000080;
  padding: 12px;
}

.topmarquee {
  background: #000080;
  color: #ffff00;
  font-weight: bold;
  padding: 4px 0;
  font-size: 14px;
}

.header {
  text-align: center;
  padding: 10px 0;
  border-bottom: 4px dashed #ff00ff;
}

.header h1 {
  margin: 0;
  font-size: 36px;
  color: #ff0000;
  text-shadow: 2px 2px 0 #ffff00, 4px 4px 0 #0000ff;
}

.subtitle {
  margin: 4px 0 0;
  font-size: 14px;
  color: #008000;
  font-weight: bold;
}

.layout {
  display: flex;
  gap: 12px;
  padding: 12px 0;
}

.sidebar {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.box {
  border: 3px solid #000080;
  background: #ffffff;
}

.boxtitle {
  background: #000080;
  color: #ffffff;
  font-weight: bold;
  padding: 4px 8px;
  font-size: 14px;
}

.box p, .box ul {
  padding: 8px;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
.buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap:5px 5px;
  padding:3px;

}
.buttons > .a {
  padding:0;
  margin:0;
}
.picbox {
  background-image: url(bg.gif);
  background-repeat: repeat;
  background-size: 65px 50px;
}

.pfp {
  display: block;
  width: 100%;
  border: 4px ridge #ff00ff;
  box-sizing: border-box;
}

.links {
  list-style: square;
  padding-left: 24px !important;
}

.links a {
  color: #0000ff;
}

.links a:visited {
  color: #800080;
}


.friends {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
}

.friend {
  width: 90px;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  color: #000080;
  text-decoration: none;
}

.friendpic {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 2px solid #000080;
  margin-bottom: 2px;
  box-sizing: border-box;
}

.friend:hover .friendpic {
  border-color: #ff00ff;
}

.cta {
  display: block;
  text-align: center;
  font-size: 13px;
  padding: 4px;
  color: #0000ff;
}

.underconstruction {
  text-align: center;
  background: repeating-linear-gradient(45deg, #ffff00, #ffff00 12px, #000000 12px, #000000 24px);
  color: #ff0000;
  font-weight: bold;
  padding: 8px;
  font-size: 14px;
  text-shadow:
    -2px -2px 0 #ffffff,
     2px -2px 0 #ffffff,
    -2px  2px 0 #ffffff,
     2px  2px 0 #ffffff,
    -2px  0    0 #ffffff,
     2px  0    0 #ffffff,
     0   -2px 0 #ffffff,
     0    2px 0 #ffffff;
}
