body {
    font-family: 'Georgia', serif; /* Elegant serif font */
    background: linear-gradient(to right, #ffebee, #f8bbd0); /* Soft pink gradient */
    color: #4a4a4a; /* Dark grey for good readability */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    line-height: 1.6;
}

.container {
    background-color: rgba(255, 255, 255, 0.9); /* Slightly transparent white background */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); /* Softer shadow */
    text-align: center;
    max-width: 700px;
    margin: 20px;
    border: 1px solid #f06292; /* Pink border */
}

h1 {
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif; /* Another elegant serif font */
    color: #ad1457; /* Deep rose pink */
    font-size: 2.8em;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

p {
    font-size: 1.2em;
    margin-bottom: 15px;
}

a {
    color: #d81b60; /* Vibrant pink for links */
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
    color: #880e4f; /* Darker pink on hover */
}

.logo {
    font-size: 4em; /* Adjust size as needed */
    margin-bottom: 20px;
    line-height: 1;
}
