body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f2f2f2;
}

h1 {
    text-align: center;
    margin-top: 20px;
}

p {
    text-align: center;
    margin-bottom: 20px;
}

div {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

a {
    text-decoration: none;
}

img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.05);
}

p {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}
