/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    background: #fafafa;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Container for all elements */
.container {
    text-align: center;
    max-width: 600px;
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Logo Section */

.logo-container img {
    width: 260px; /* Increased by 30% from 200px */
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
}


/* Message Styling */
.message h1 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: #333;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.message p {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: #555;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

/* Additional Styling for Elegance */
.message h1 {
    text-transform: uppercase;
    font-weight: 700;
    color: #444;
}

.message p {
    font-weight: 300;
    color: #666;
}
