@import url('https://fonts.googleapis.com/css2?family=Special+Elite&display=swap');

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}


body {
  font-family: "Special Elite";
  color: #ebdee0;
}

.link a {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 50px;
  transition: transform, filter 0.3s ease;
}
  
.link a:visited {
  color: white;
}

.link a:hover {
  transform: scale(1.2);
}

.left-border,
.right-border {
  position: fixed;
  top: 0;
  width: 80px;
  height: 100vh;
  opacity: .5;
  z-index: 10;
  overflow: hidden;
}

.left-border {
  left: 0;
}

.right-border {
  right: 0;
}

.left-border img,
.right-border img {
  position: absolute;
  width: 100vh;
  height: 80px;
  max-width: none;
  object-fit: cover;
  top: 50%;
  left: 50%;
}

/* LEFT */
.left-border img {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* RIGHT */
.right-border img {
  transform: translate(-50%, -50%) rotate(-90deg);
}

.titleimage img {
  position:  absolute;
  display: block;
  left: 400px;
  top: 10px;
  width: 600px;
  height: auto;
  }
  
.base {
  position: relative; 
  z-index: 10;        
  }

aside {
  width: 375px;
  height: 100vh;
  margin: 0;
  border-right: 4px double white;
  background-color: #181112;
  }
 
.grid{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5px;
  flex-wrap: wrap;
  margin: 0px;
  }
  
.grid-item{
  width: 100%;
  padding: 15px;
  padding-left: 90px;
  box-sizing: border-box;
  }
  
main{
  width: 1000px;
  height: 100vh;
  margin-top: 35px;
  margin-left: 35px;
  overflow-y: scroll;
  }

.main-grid-item{
  background-image: url("https://lettyverse.neocities.org/passion-project/main-grid.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: .8;
  border: 2px double white;
  width: 100%;
  height: 100%;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 100px;
  box-sizing: border-box;
  }
