body {
  
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    min-height: 100vh;
    
}


.index::after {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(ellipse at center, rgba(245, 2, 2, 0) 60%, rgba(122, 1, 1, 0.6) 100%);
}




.index {
    background-image: url("storage/roomsketch.jpg");
}



.conthead {
    display: flex;
    flex-direction: row;
    justify-content: center;
    color: red;
    gap: 30px;
}

.contmain {
    display: flex;
    flex-direction: row;
    justify-content: center;
    color: red;
    margin: 50px;
}


@keyframes fade-in {
    0% {opacity: 0;}
    100% {opacity: 1;}

}


.fade {
    animation:fade-in 2s;
}

.wip {
    display: flex;
    margin: auto;
    justify-content: center;
    color: rgb(255, 0, 0);
   
    
}



.gallery {
    background-image: url("storage/forest.jpg");
}

.gallery::after {
      content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(ellipse at center, rgba(245, 2, 2, 0) 60%, rgba(0, 56, 13, 0.603) 100%);
}

.gallerycont {
    display: flex;
    justify-content: center;   
    align-items: flex-start;   
    width: 100%;
    min-height: 100vh;
}

.gallerybox {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;   
    gap: 20px;                
    width: 100%;
    max-width: 1400px;        
    margin: 0 auto;            
}
#lightbox {
    position: fixed;
    z-index: 10000;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
    display: none;
    
    
}

#lightbox.active {
    display: flex;
    flex-direction: column;  
    justify-content: center;
    align-items: center;
    
}


#lightbox img {
    max-width: 60%;
    max-height: 60%;
    padding: 4px;
    background-color: black;
    
}

.gallerybox img,
.gallerybox video {
    width: 200px;
    height: 200px;
    object-fit: cover;
    display: block;
    background: #222; 
}


.videowrap {
    position: relative;
    display: inline-block;
}

.videowrap video {
    display: block;
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.videowrap::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 48px;
    height: 48px;
    background: url('data:image/svg+xml;utf8,<svg fill="white" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="30" fill="rgba(0,0,0,0.5)"/><polygon points="24,18 24,42 44,30" fill="white"/></svg>') no-repeat center center;
    background-size: 48px 48px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0.85;
}

.batbutton {
    background-image: url("storage/Bat(4).gif");
}


.about {
    background-image: url("storage/vampcastle.jpg");
    background-color: black;
}

.about::after {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(ellipse at center, rgba(245, 2, 2, 0) 60%, rgba(255, 0, 0, 0.603) 100%);
}

.mainabout{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    
}

.aboutmain {
    flex: 1 1 400px;          
    min-width: 0;             
    max-width: 800px;        
    width: 100%;               
    min-height: 400px;
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.5);
    outline: none;
    border-color: #ff0000;
    box-shadow: 0 10px 30px #fc0000, -10px 0 30px #fc0000, 10px 0 30px #fc0000;
    text-align: center;
    margin: 2rem 0;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    
}

.text {
    font-family: "Sitka Text", "Georgia", "Times New Roman", serif;
    font-style: italic;
}


.justarow {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 25px;
    gap: 10px;
    
}


.justacolumn {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 25px;
    gap: 10px;
    
}

