body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f5efe6, #e8dfd0); /* warm beige gradient */
    color: #4a3f35;
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #3b2f28;
}

img {
    width: 300px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(80, 60, 40, 0.25);
}

p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px auto;
    color: #5a4c42;
}

/* Buttons on separate lines */
.btn {
    display: block;
    width: fit-content;
    margin: 15px auto;
    padding: 15px 40px;
    font-size: 18px;
    color: white;
    background: #b08b62;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(80, 60, 40, 0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

/* First button bigger */
.btn:first-of-type {
    padding: 20px 60px;
    font-size: 22px;
    background: #a27a55;
}

/* Hover effect */
.btn:hover {
    transform: translateY(-3px);
    background: #9c7753;
    box-shadow: 0 6px 14px rgba(80, 60, 40, 0.35);
}
