
 @import url('https://fonts.googleapis.com/css?family=Cherry Bomb One|Itim|Sour Gummy|Silkscreen|Chicle|Coral Pixels|Special Elite');





body{
    background-color: transparent;
	background-image: url('https://heathersaturnia.neocities.org/pxls/deco/saturniawrth3.png');
    background-repeat: no-repeat;
    background-position:top right;
    background-size: 450px;
overflow-x: hidden;
    font-family: "Courier New"; 
color: #000000;
    font-size:20px; 
    margin: 2px;
    cursor:crosshair;
}

/****** ect ******/
a{
    text-decoration:none;
    color:var (--link);
    transition:0.3s;
   
}

a:hover{
    cursor:crosshair;
    transition:0.3s;
    color:var (--linkh);
    
}
.highlight{
    background-color:var (--lightaccent);
    color:white;
}

* {
  scrollbar-width: thin;          
  scrollbar-color: var (--lightaccent) transparent; 
}



#wrapper{
    animation:fadeEffect 1s;
    margin:5px;
    position:absolute;
}

@keyframes fadeEffect{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}


.container {  
    display: grid;
    margin: auto;
    width: 800px;
    grid-template-columns: 190px 150px 220px 220px;
    grid-template-rows: auto 220px auto;
background-color: #eeee;
opacity: 95%;
    gap: 5px 5px;
    grid-auto-flow: row;
    grid-template-areas:
        "profile main main info"
        "blinkies main main stamps"
        "footer footer footer footer";

    
}



.main{ 
    grid-area:main;
    border: 1px dotted #000000;
    padding: 5px;
    overflow:visible;
    background-color: #eeee;

}

.thumbnail {
    width: 100px; 
    height: 100px; 
    object-fit: cover; 
    }

    #ect2 { 
 display: flex; 
flex-direction: column;
 padding: 5px;
background-color: #eeee;
text-align: center;
font-family: "Courier New"; 
font-size: 12px;
}

.profile{ 
    grid-area:profile;
    font-family: "Courier New"; 
font-weight: bold;
line-height: normal;
border: 1px dotted #000000;
color: #000000;
font-size: 12px;
    padding:4px;
    background-color: #eeee;
}

.favs {
  
background-color: #eeee;
overflow-x: hidden;
overflow-y: hidden;
text-align: left;
font-family: "Courier New"; 
font-size: 11px;
margin: -2px;
padding: 2px;
}


.blinkies{ 
    grid-area:blinkies; 
    border: 1px dotted #000000;
    padding:10px;
    overflow: hidden;
   background-color: #fff;
}

.info{ 
    grid-area:info; 
    border: 1px dotted #000000;
    padding:10px;
    text-align:center;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    background-color: #eeee;
}
.info header {
  display: block;
  margin: 0;
  padding: 0;
  font-family: "Coral Pixels"; 
  font-size: 20px;
  color: #000000;
  text-align: left;
  font-weight: bold;
}

.stuffs {
  max-width: 195px;
  height: 120px;
  background: #fff;
  overflow-x: hidden;
  overflow-y: scroll;
  text-align: left;
border: 1px dotted #000000;
font-family: "Courier New"; 
color: #000000;
font-size: 11px;
  margin: 5px;
}


.infotable tr {
  display: block;
}

.infotable td {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
}

.info table {
  border-collapse: collapse;
}


.stamps{ 
    grid-area:stamps; 
    border: 1px dotted #000000;
  background-color: #fff;
    padding:10px;
}

.footer {
  grid-area: footer;
  text-align: center;
  border: 1px dotted #000000;
  padding: 10px;
  overflow: visible;   
  height: 120px;;       
  display: block;  
  background-color: #eeee;   
}
.footer header{
    text-align:left;
    font-family: "Coral Pixels"; 
  font-size: 20px;
  }




header{
    
    font-family: "Coral Pixels"; 
  font-size: 20px;
  }




.openProject {
    margin: 5px;
    position: relative;
    display: inline-block;
 
    font-family: "Special Elite"; 
    font-weight: bold;
    font-size: 14px;
 
}

.openProject header {
display: block;
margin: 0;
padding: 0;
font-family: "Coral Pixels"; 
font-size: 16px;
color: #000000;
text-align: left;
font-weight: bold;
}

.openProject img {
    display: block;
    margin: 0 auto;
}

.openProject:hover .infotext {
    visibility: visible;
    opacity: .90;
}
.infotext {

    visibility: hidden;
    min-width: 125px;
    width: auto;
    background-color: #eeee;
    color: #000;
    text-align: center;
    font-family: "Courier New";
    font-size: 12px;
    border: 1px dotted #000000;
    padding: 2px ,2px;
    position: absolute;
    z-index: 99;
    top: 100%; 
    left: 75%; 
    transform: translateX(-55%); 
    opacity: 0;
    transition: opacity 0.3s;
}


.vmarquee,
.vmarquee2 {
  display: inline-block;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.vmarquee .v-track {
  display: inline-flex;
  flex-direction: column;
  animation: vscroll 22s linear infinite;
}

.vmarquee2 .v-track {
  display: grid;
  grid-template-columns: repeat(2, auto); 
  grid-auto-rows: auto;
  column-gap: 2px; 
  row-gap: 2px;   
  animation: vscroll 22s linear infinite;
}

.vmarquee3 {
  display: inline-block;
  width: 600px;        
  height: auto;
  overflow: hidden;
  position: relative;
  white-space: nowrap; 
}

.vmarquee3 .v-track {
  display: inline-flex;
  flex-direction: row;
  gap: 10px;          
  animation: hscroll 40s linear infinite;
}

/* Pause on hover */
.vmarquee .v-track:hover,
.vmarquee2 .v-track:hover,
.vmarquee3 .v-track:hover  {
  animation-play-state: paused;
}

@keyframes vscroll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}


@keyframes hscroll {
  0%   { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}


.vmarquee  { width: auto; }
.vmarquee2 { width: 210px; } 
.vmarquee3 { width: 720px; }
.vmarquee3 img {
  transform: scale(0.75);  
  transform-origin: top left;
  display: inline-block;
}


details {
  background: #fff;
  width: 405px;
  max-width: 100%;
  border: 1px dotted #000000;
  color: #000000;
  line-height: 20px;
  opacity: 0.9;
  margin: 10px auto;
  display: block;
  box-sizing: border-box;
  overflow: visible;
}


details>summary::before  {
  width: 20px;
  height: 20px;
  margin-left: 1px;
  display: inline-block;
  transition: 0.2s;
  content: url("https://heathersaturnia.neocities.org/pxls/blog/a-right.gif");
}

details[open] summary::before {
  transform: rotate(90deg);
}
summary {
display: flex;
height:25px;
cursor: pointer;
background-color: transparent; 
font-family: "Special Elite"; 
font-size: 20px;
font-weight: bold;
}