.page-layout{
  display: flex;
  flex-direction: row;        
  justify-content: flex-start; 
  align-items: flex-start;    
  gap: 40px;                  
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.link-bar{
  margin-top: 7vw;
  display: flex;
  flex-direction: column;
}
.links{
 background: #1a1a1a;
  text-decoration: none;
  color: #7fae7f;
  font-family: "Libre Barcode 39 Text", sans-serif;
  font-size: 5.6rem;
  transition: color 0.3s ease;
  margin-bottom: 5vw;
}
.compscreen-wrap{
  position: relative;
  width: min(100%, 700px);
  aspect-ratio: 970 / 995; 
  height: auto;
  margin: 6% auto;
}
.compscreen-frame{
  position: absolute;
  inset: 0;
  background: url("/images/computer.png") center/contain no-repeat;
  pointer-events: none;
  z-index: 0;
}
.compscreen-window{
  position: absolute;
  top: 16%; left: 10%; right: 10%; bottom: 10%;
  z-index: 1;
  height: 52%;
}

.compscreen-window .card-third{
  position: relative;
  width: 100%;
  height: 100%;
  background: transparent;
  overflow: hidden;
}


.compscreen-wrap .third-mid-container{
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}

/*********************** micro blog ********************/
.compscreen-wrap .micro-blog{
  width: 88%;
  margin: 2% auto 0;
  max-height: 87%;
  background: rgba(20,20,20,0.88);
  border: 2px inset gray;
  padding: 12px;
  overflow: auto;
}
.compscreen-wrap .micro-blog h5{ margin: 0 0 -10px; }

.post { font-family: DotGothic16, sans-serif; }
.username { font-weight: 700; margin-right: .4ch; color: #7fae7f; }
.message { color: white; margin-right: .6ch; }
.ago { color: #f048b5; font-size: .85em; }
.dots{ display:inline-flex; gap:1px; vertical-align:baseline; }
.dots span{ display:inline-block; transform-origin:50% 100%; animation: dot-bounce 1250ms ease-in-out infinite; will-change: transform; }
.dots span:nth-child(2){ animation-delay:.15s; }
.dots span:nth-child(3){ animation-delay:.30s; }
@keyframes dot-bounce{ 0%,80%,100%{transform:translateY(0)} 40%{transform:translateY(-3px)} }

.micro-blog-body{
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  margin-top: -2px;
  text-align: start;
}