* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #3b0000, #6b0000, #8b0000, #6b0000, #3b0000);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    color: #f5e6e6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-x: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

header {
    text-align: center;
    padding: 2.5rem 1rem;
    background: linear-gradient(135deg, rgba(59, 0, 0, 0.9), rgba(107, 0, 0, 0.9));
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

header p {
    font-size: 1.1rem;
    margin-top: 0.5rem;
    opacity: 0.85;
    font-weight: 400;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.image-container {
    text-align: center;
}

.framed-image {
    max-width: 100%;
    height: auto;
    border: 8px solid #2a0000;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: linear-gradient(45deg, #4b0000, #2a0000);
    padding: 10px;
}

.framed-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.9);
}

footer {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(59, 0, 0, 0.9), rgba(107, 0, 0, 0.9));
    box-shadow: 0 -6px 12px rgba(0, 0, 0, 0.5);
    font-size: 0.9rem;
    font-weight: 400;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    header p {
        font-size: 0.95rem;
    }
    .framed-image {
        border: 5px solid #2a0000;
        padding: 6px;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1.5rem 0.5rem;
    }
    header h1 {
        font-size: 1.5rem;
    }
    header p {
        font-size: 0.85rem;
    }
    .framed-image {
        border: 4px solid #2a0000;
        padding: 4px;
    }
}
