body {
    max-width: 800px;
    min-height: 100vh;
    margin: 0 auto;
    padding: 20px;
    background-color: #2f2f2f;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 {
    font-family: "Rubik Doodle Shadow", system-ui;
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
    /* stronger dark shading for more contrast and depth */
    color: #ffffff;
    /* multiple darker layers for a richer, more pronounced shadow */
    text-shadow:
        0 6px 18px rgba(0,0,0,0.85), /* large deep shadow */
        0 3px 8px rgba(0,0,0,0.6),   /* mid shadow */
        0 1px 0 rgba(255,255,255,0.03); /* tiny highlight to keep edges crisp */
}

/* Slate frame container for image */
.slate-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    background: 
        linear-gradient(135deg, #363636 0%, #313131 50%, #363636 100%),
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 100% 100%, 50px 50px;
    background-blend-mode: soft-light;
    border-radius: 12px;
    
    border: none;
    box-shadow: 
        0 4px 16px rgba(0,0,0,0.8),
        0 8px 24px rgba(0,0,0,0.6),
        0 16px 32px rgba(0,0,0,0.5),
        0 24px 48px rgba(0,0,0,0.4),
        0 32px 64px rgba(0,0,0,0.3);
    margin: 24px auto;
    max-width: 90%;
    transition: all 0.3s ease;
}

/* Image styles */
img {
    max-width: 100%;
    border-radius: 8px;
    padding: 0;
    background-color: #1a1a1a;
    box-shadow:
        0 4px 32px rgba(100,149,237,0.5),
        0 0 60px 20px rgba(100,149,237,0.3),
        0 0 120px 40px rgba(100,149,237,0.15);
    transition: all 0.3s ease;
}

/* Hover effects */
.slate-frame:hover img {
    box-shadow:
        0 4px 32px rgba(100,149,237,0.6),
        0 0 80px 30px rgba(100,149,237,0.4),
        0 0 160px 60px rgba(100,149,237,0.2);
}

