/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Page layout */
body {
    min-height: 100vh;
    background: linear-gradient(135deg, #1f1c2c, #928dab);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

/* Heading */
h1 {
    margin-bottom: 30px;
    font-size: 2.5rem;
    letter-spacing: 1px;
}

/* Image link */
a img {
    width: 200px;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

a img:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}
