* {
  cursor: url(https://cur.cursors-4u.net/others/oth-4/oth378.cur), auto !important;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #231f20;
    flex-grow: 1;
    position: relative;
}

/* grave image */
.mainbackground_image {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 25%;
    height: 100%;
    background-image: url(https://vampirelounge.neocities.org/blog/mainbackground_grave2.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left bottom;
    z-index: -1;
    opacity: 0.6;
}

/* banner */
.top-banner {
    min-width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 3%;
    border-bottom: 2px solid #4d4847;
}
.banner-image {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* grid containers */
.parent {
    --padding: 4px;
    position: relative;
    display: grid;
    gap: 8px;
    height: 1000px;
    grid-template-columns: 300px 500px;
    grid-template-rows: 480px 1fr;
    grid-template-areas:
    'sidebar header'
    'sidebar main';
}

/* sidebar elements */
.sidebar {
    grid-area: sidebar;
    height: 99%;
    width: 250px;
    border: 2px solid #4d4847;
    outline: 2px solid #4d4847;
    outline-offset: 3px;
    display: grid;
    place-content: start center;
    background: #2f292a;
    color: white;
}
.pfp {
    text-align: center;
    margin-top: 15%;
    outline: 1px solid #4d4847;
    outline-offset: -5px;
    margin: 10%;
    background-color: black;
}
.aboutme {
    color: white;
    font-size: 75%;
    text-align: center;
}
.border {
    width: 50%;
    border: 1.5px solid #4d4847;
    margin: 0 auto;
}
.content {
    color: white;
    font-size: 100%;
    text-align: center;
    margin: 5%;
    padding-bottom: 1px;
}

/* category sections */
.cateories {
    color: white;
    font-size: 75%;
    text-align: center;
}
.border2 {
    width: 50%;
    border: 1.5px solid #4d4847;
    margin: 0 auto;
}

.categoriesgrid {
    display: grid;
    grid-template-columns: 105px 105px;
    justify-content: space-evenly;
    margin: 15px 0;
}
.blog {
    font-size: 15px;
    color: white;
    background-color: #4d4847a4;
    height: 60%;
    outline: 2px solid #4d4847;
    display: flex; 
    align-items: center;
    justify-content: center;
    text-align: center;
}
.games {
    font-size: 15px;
    color: #ffffff;
    background-color: #4d4847a4;
    height: 60%;
    outline: 2px solid #4d4847;
    display: flex; 
    align-items: center;
    justify-content: center;
    text-align: center;
}
.movies {
    font-size: 15px;
    color: #ffffff;
    background-color: #4d4847a4;
    height: 60%;
    outline: 2px solid #4d4847;
    display: flex; 
    align-items: center;
    justify-content: center;
    text-align: center;
}
.books {
    font-size: 15px;
    color: #ffffff;
    background-color: #4d4847a4;
    height: 60%;
    outline: 2px solid #4d4847;
    display: flex; 
    align-items: center;
    justify-content: center;
    text-align: center;
}
.music {
    font-size: 15px;
    color: #ffffff;
    background-color: #4d4847a4;
    height: 60%;
    outline: 2px solid #4d4847;
    display: flex; 
    align-items: center;
    justify-content: center;
    text-align: center;
}
.art{
    font-size: 15px;
    color: #ffffff;
    background-color: #4d4847a4;
    height: 60%;
    outline: 2px solid #4d4847;
    display: flex; 
    align-items: center;
    justify-content: center;
    text-align: center;
}
.blog:hover,
.games:hover,
.movies:hover,
.books:hover,
.music:hover,
.art:hover {
    color: red;
    text-decoration: underline;
}

/* blinkies & stamps */
.stamps {
    display: grid;
    grid-template-columns: 110px 110px;
    grid-template-rows: 60%;
    padding-left: 20px;
}
.blinkies {
    padding-top: 20px;
}
.credit {
    margin-top: 30px;
    color: white;
    font-size: 80%;
}

/* top album */
.main {
    grid-area: header;
    height: 100%;
    color: white;
    padding: 0px;
    display: flex;
    flex-direction: column;
}
.section-one {
    background-color: #2f292a;
    border: 2px solid #4d4847;
    outline: 2px solid #4d4847;
    outline-offset: 3px;
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    position: relative;
}
.albumcover {
  position: relative;
  z-index: 2;
}
.albumcd {
  position: relative;
  z-index: 1;
  left: -80px;
  animation: rotation 8s infinite linear;
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


/* underrated artist */
.section-two {
    margin-top: 10%;
    background-color: #2f292a;
    border: 2px solid #4d4847;
    outline: 2px solid #4d4847;
    outline-offset: 3px;
    padding: 20px;
    position: relative;
    ;
}

.section-two h3 {
    color: white;
    margin-top: 0;
    margin-bottom: 30px;
    padding-left: 5px;
    text-transform: uppercase;
}

/* Grid container */
.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    grid-template-rows: repeat(2, auto);   /* 2 rows */
    gap: 10px;
    justify-items: center;
    align-items: start;
}
/* Each image link container */
.image-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    width: 100%;
}
.image-link:hover {
    transform: translateY(-5px);
}
.image-link img {
    width: 129px;
    height: 73px;
    margin-bottom: 10px;
}
.image-caption {
    color: white;
    font-size: 13px;
    margin: 0;
    text-align: center;
    letter-spacing: 0.5px;
}

