html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fdf6e3;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

main {
    text-align: center;
    max-width: 600px;
    width: 90%;
    padding: 20px;
    background-color: #fffaf0;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 10px;
}

img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    margin: 20px auto;
}

p {
    font-size: 1.1em;
    color: #f00101;
    line-height: 1.6;
    text-align: center;
}
