/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */






body {
  background-color: black;
  color: #353b3a;
font-family:  sans-serif;
font-size: 11px;
  text-shadow: 1px 1px 0 #b1c3c4;
}

img {
  transform: scale(2);
  height: auto; 
  image-rendering: pixelated;
  transform-origin: bottom left;
}





.cbox{
position:absolute;
border-style:none;
padding:10px;
image-rendering:pixelated;
text-align:center;
}



.portraits{
left:49px;
top:100px;
width:195px;
height:390px;
background:#2a2a2a;
text-align: left;
image-rendering:pixelated;
}




.beasts{
left:888px;
top:390px;
width:300px;
height:230px;
text-align: left;
background-image:url("beasts.png");
background-size: cover;
}

.chara{
left:300px;
top:100px;
width:555px;
height:200px;
text-align: left;

background-image:url("chara.png");
background-size: cover;
}

.chara2{
left:300px;
top:300px;
width:666px;
height:500px;
text-align: left;

background-image:url("chara2.png");
background-size: cover;
}

.tilesets{
left:50px;
top:510px;
width:220px;
height:400px;

background-image:url("tilesets.png");
background-size: cover;
}





.cbox a{
color:#b1c3c4;
text-decoration:none;
}

.cbox a:hover{
color:white;
}





.top-links {
  display: flex;
  gap: 3px;          
  margin-bottom: 30px; 
  margin-left: 300px;
  margin-top: 3px;
}


.top-links .link {
  display: inline-block;
  width: 50px;     
  height: 70px;
  background-size: cover;
  background-position: center;
  text-indent: -9999px; 
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease;
}


.top-links .link:hover {
  transform: scale(1.2);
}


.top-links .tumblr {
  background-image: url('tumblr.png');
}

.top-links .instagram {
  background-image: url('gram.png');
}

.top-links .twitter {
  background-image: url('poop.png');
}


.projects {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 273px;
  margin-left: 265px;
  width: 475px;
  height: 333px;
}


.project-card {
  position: relative;
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  color: white;
  border: 2px solid #444;
  overflow: hidden;
  image-rendering: pixelated;
}


.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}


.project-content {
  position: relative;
  z-index: 2;
  padding: 10px;
}


.project-card h3,
.project-card p {
  margin: 5px 0;
  text-shadow:
    -1px -1px 0 black,
     1px -1px 0 black,
    -1px  1px 0 black,
     1px  1px 0 black;
}


a.project-card:hover {
  border-color: white;
  transform: scale(1.02);
  transition: 0.15s ease;
}


