body{
  background-color: rgb(166, 167, 114);
  background-image: url("Retro\ Alien\ Heads\ in\ Neon\ Green\ +\ Black.jpg");
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif, Helvetica, sans-serif ;


  transform: scale(1.25); /* Zooms in by 25% */
  transform-origin: top left; /* Ensures scaling starts from the top-left corner */
  width: calc(100% / 1.25);
}

.archived-notice{
  background-color: black;
  color: white;
  margin: -10px -10px 10px;
  width: 101%;
}
.archived-notice p{
  margin: 0;
  font-size: 14px;
  text-align: center;
}
.archived-notice a{
  color: white;
  a:visited{
    color: #3CE64B;
  }
}

.top{
  display: flex;
}

.head-img{
  text-align: left;
  padding-top: 4px;
}

.right{
  width: 100%;
}

.header, .name, .c-head, input[type=submit], h3, .footer {
  background: rgb(173, 215, 162);
  background: -moz-linear-gradient(180deg, rgba(93,254,47,1) 1%, rgba(115,255,75,1) 4%, rgba(99,218,63,1) 10%, rgba(98,218,64,1) 23%, rgba(115,255,75,1) 100%);
  background: -webkit-linear-gradient(180deg, rgba(93,254,47,1) 1%, rgba(115,255,75,1) 4%, rgba(99,218,63,1) 10%, rgba(98,218,64,1) 23%, rgba(115,255,75,1) 100%);
  background: linear-gradient(180deg, rgba(93,254,47,1) 1%, rgba(115,255,75,1) 4%, rgba(99,218,63,1) 10%, rgba(98,218,64,1) 23%, rgba(115,255,75,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5dfe2f",endColorstr="#73ff4b",GradientType=1);
}

.header{
  border: 2px black solid;
  height: 30px;
  margin: auto;
  border-radius: 10px 10px 0px 0px;
  padding: 0px 5px 5px;
  display: flex;
  justify-content: center;
  min-width: 600px;
}

.header p{
  margin: 10px 0px;
  font-weight: bold;
}

.header a:visited{
  color: blue;
}

.breadcrumb {
  padding: 5px 5px;
  margin: 0px 0px;
  border: 2px black solid;
  border-top: none;
  background: rgb(93,254,47);
  font-weight: bold;
  font-size: 14px;
  min-width: 600px;
}

.breadcrumb a:hover{
  color: blue;
}

.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
    
.breadcrumb li:not(:last-child)::after {
  display: inline-block;
  margin: 0 .25rem;
  content: "▶";
}
    
.container {  display: grid;
  grid-template-columns: 220px 600px 400px;
  grid-template-rows: 2000px;
  gap: 0px 24px;
  grid-auto-flow: row;
  grid-template-areas:
      "profile posts profile2";
  margin: 20px 10px;
  margin-bottom: 100px;
  margin-top: 20px;
}


.profile {  display: grid;
  grid-template-columns: 220px;
  grid-template-rows: 290px 62vh;
  gap: 10px 0px;
  grid-auto-flow: row;
  grid-template-areas:
      "p1"
      "p2"
      "p3";
  grid-area: profile; 
}


.profile2 {  display: grid;
  grid-template-columns: 150px;
  grid-template-rows: 0px 10vh;
  gap: 10px 0px;
  grid-auto-flow: row;
  grid-template-areas:
      "p1"
      "p2"
      "p3";
  grid-area: profile2; 
    margin-left: 120px;
    height: 300;

}

.p1 { grid-area: p1;
  border: 2px black solid;
  border-radius: 10px 10px 0px 0px;
  background-color: rgba(255, 255, 255, 0.568);
  height: fit-content;
}
.name{
  border-bottom: 2px black solid;
  border-radius: 8px 8px 0px 0px;
  padding: 1px 4px;
}

.name h1{
  font-size: 26px;
  margin: 1px 0px;
  font-weight: 800;
}

.name p{
  font-size: 12px;
  font-weight: 800;
  margin: -5px 1px 5px;
  text-shadow: white 0px 0px 4px;
}

.p1 img{
  display: block;
  width: 80%;
  margin-top: 5px;
  margin-left: 20px;
  border: black 2px solid;
}

.quote{
  font-size: 15px;
  margin: 5px 0px;
  font-weight: 700;
  text-align: center;
  
}

.p2 { grid-area: p2; 
  border: black 2px solid;
  background-color: rgba(255, 255, 255, 0.568);
  border-radius: 10px 10px 0px 0px;
}

.c-head{
  border: 2px black solid;
  border-radius: 10px 10px 0px 0px;
  text-align: center;
  width: 95%;
  padding: 5.5px;
  margin: -2px 0px -4px -2px;
  font-weight: 800;
  font-size: 16px;
  color: white;
  text-shadow: 0px 0px 10px black;
}
.comms{
  height: 300px;
  overflow-y: scroll;
  overflow-x: hidden;
  margin-top: 0px;
}
.comment{
  padding: 5px;
  padding-left: 5px;
}

.comment p{
  margin: 5px 0px;
  font-size: 14px;
}

.comment a{
  font-weight: 700;
  color:darkred;
}

.comment a:visited{
  color:darkred;
}

.profile hr{
  border-color: black;
  margin: 2px -2px;
}

.message{
  margin-top: 12px;
  padding: 0px 4px;
}

input[type=submit]{
  border-radius: 5px;
  color: white;
  text-shadow: 0px 0px 10px black;
}

input[type=text]{
  border-color: black;
}

.posts { 
  grid-area: posts;
}
.containment{
  overflow-y: scroll;
  overflow-x: hidden;
  /* height: 900px; */
  height: 70vh;
  width: 700px;
  padding: 10px;
  border-radius: 15px;
  box-shadow: inset rgba(0, 0, 0, 0.315) 0px 0px 50px 1px;
}
.post{
  border: black 2px solid;
  border-radius: 10px 10px 0px 0px;
  background-color: rgba(255, 255, 255, 0.568);
  margin-bottom: 15px;
}

.post p{
  margin: 5px 10px 10px 10px;
}

.title{
  text-decoration: none;
  text-align: center;
}

h2{
  color: aliceblue;
  margin-bottom: 5px;
  margin-left: 5px;
  text-decoration: underline;
}

h3{
  color: white;
  text-shadow: 0px 0px 10px black;
  padding: 7px 2px 7px 8px;
  margin: 0px;
  border-radius: 10px 10px 0px 0px;
  height: 20px;
  font-size: 18px;
}

.re{
  border-left: gray 2px solid;
  margin: 5px 50px;
  opacity: 75%;
}

.re:hover{
  opacity: 1;
  cursor: pointer;
}

.re a{
  color: black;
  text-decoration: none;
}

.re p{
  margin: 5px;
  font-size: 14px;
}

.username{
  font-weight: 700; 
  color:darkred; 
  cursor: pointer; 
  text-decoration: underline;
}

.signature {
  height: 41px;
  font-family: cursive;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  justify-content: center;
  align-items: center;
}

.signature img{
  max-height: 75px;
}

h4{
  color: aliceblue;
  margin: 5px;
  text-decoration: underline;
  cursor: pointer;
}

.footer{
  border: 2px black solid;
  height: 30px;
  margin: auto;
  border-radius: 0px 0px 10px 10px;
  padding: 0px 5px 5px;
  text-align: center;
  font-size: small;
}

.footer p{
  margin: 10px 0px;
  font-weight: bold;
}

.footer a:visited{
  color: blue;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgb(93,254,47) rgb(51, 199, 66);
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track, .comms::-webkit-scrollbar-track, .containment::-webkit-scrollbar-track{
  background: rgb(44, 103, 121);
}

*::-webkit-scrollbar-thumb, .comms::-webkit-scrollbar-thumb, .containment::-webkit-scrollbar-thumb {
  background-color: rgb(93,254,47);
}
.comms::-webkit-scrollbar {
  width: 4px;
}

.containment::-webkit-scrollbar {
  width: 10px;
}

.containment::-webkit-scrollbar-track {
  border-radius: 0px 10px 10px 0px;
}
.containment::-webkit-scrollbar-thumb {
  border-radius: 0px 10px 10px 0px;
}


