/* styles.css */

body {
    font-family: Arial, sans-serif;
    background-color: #FFD1DC;
    margin: 0;
    padding: 20px;
    text-align: center;
}

h1 {
    color: #333;
    margin-bottom: 40px;
}

a {
    display: inline-block;
    margin: 20px;
    text-decoration: none;
    color: #444;
    transition: transform 0.2s ease;
}

a:hover {
    transform: scale(1.05);
}

img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

p {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
}

footer {
    border-top: 1px solid #ccc;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #777;
    margin-top: 40px;
}