body {
    background: linear-gradient(135deg, #ffd6e8, #d8b4fe);
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 30px;
}


h1 {
    color: #8e44ad;
    font-size: 45px;
    text-transform: uppercase;
    text-shadow: 2px 2px 5px rgba(142, 68, 173, 0.3);
    margin-bottom: 30px;
}


img {
    width: 300px;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid white;
    box-shadow: 0 4px 12px rgba(186, 104, 200, 0.4);
    margin: 15px;
    transition: 0.3s;
}


img:hover {
    transform: scale(1.08);
    border-color: #e1bee7;
    box-shadow: 0 8px 20px rgba(186, 104, 200, 0.6);
}