@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
}

html{
    
    font-family: "Outfit", sans-serif;
}

body{
    background-color: black;
}
.comics{
    padding-top: 50px;
    margin: auto;
    width: 90%;
    text-align: center;
    }
    .comics h1{
    font-size: 45px;
    color: red;
    font-weight: 700;
    }
    .comics .welcome{
    color: #ffffff;
    font-size: 18px;
    font-weight:300;
    padding: 10px;
    }
    @media (max-width: 720px) {
        .comics h1{
            font-size: 32px;
        }
        .comics .welcome{
            font-size: 13px;
        }
    }
    .shadow-text{
        color: #f70000;
        text-shadow: 0px 0pt 25px red;
    }

.custom-heading {
    font-size: 48px; 
    font-weight: bold;
    text-align: center; 
    margin: 20px 0;
    padding-left: 70px;
    color: #ff0000;
    text-transform: uppercase;
    text-align: left;  
    margin-bottom: -80px;
    width:90%;
}
    @media (max-width: 720px) {
    .custom-heading {
        font-size: 30px; /* Adjust the size as needed */
        font-weight: bold;
        margin-bottom: -80px;
        padding-left: 20px;
    }
}
/* Default layout: For larger screens (Desktop) */
.img-gallery {
    width: 90%;
    margin: 100px auto 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two images side by side */
    grid-gap: 50px;
}
.img-gallery img {
    width: 100%;
    cursor: pointer;
    transition: 0.5s ease;
}

.img-gallery img:hover {
    transform: scale(0.95);
    box-shadow: 0 20px 50px rgba(68, 77, 136, 0.2);
}
/* For tablets (768px to 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .img-gallery {
        grid-template-columns: repeat(2, 1fr); /* Two images per row for tablets */
        grid-gap: 30px; /* Slightly reduced gap for tablets */
    }
}
/* For mobile (less than 768px) */
@media (max-width: 768px) {
    .img-gallery {
        grid-template-columns: 1fr; /* One image per row for mobile */
        grid-gap: 20px; /* Decrease gap size for smaller screens */
    }
}
/* Gallery Wrapping for Desktop */
.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns for gallery on larger screens */
    gap: 20px;
}

/* Adjusting the gallery for tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr); /* Keep two columns for tablets */
        gap: 20px;
    }
}
/* Adjusting the gallery for mobile */
@media (max-width: 768px) {
    .gallery {
        grid-template-columns: 1fr; /* One column for mobile */
        gap: 20px;
    }
}
.text-heading {
    width: 95%;
    height: 4rem;
    top: 50%;
    margin: auto;
    padding: 10px;
    font-size: 20px;
    color: white;
    font-family: monospace;
    text-transform: uppercase;
    text-align: left;
}

.anime-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.85);
}

.anime-card img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/7;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.anime-card:hover img {
    transform: scale(1.1);
}
.read-more-btn {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background-color: red;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: none;
    transition: opacity 0.3s ease;
}
.NEW-msg {
    position: absolute;
    top: 0;
    left: 20px;
    transform: translateX(-50%);
    padding: 10px;
    padding-left: 20px;
    background-color: red;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    display: block;
    font-weight: bold;
}
.UPCOMING-msg {
    position: absolute;
    top: 0;
    left: 50px;
    padding-left: 20px;
    transform: translateX(-50%);
    padding: 10px;
    background-color: yellow;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 5px;
    display: block;
    font-weight: bold;
}
.anime-card:hover .read-more-btn {
    display: block;
    opacity: 1;
}
.towardspdf{
    text-decoration: none;
    color: white;
}