body {
    font-family: 'Arial', sans-serif; /* Changed font */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(to right, #ff7e5f, #feb47b); /* Added gradient background */
}

.container {
    text-align: center;
    padding: 3em; /* Increased padding */
    background-color: rgba(255, 255, 255, 0.9); /* Slightly transparent white background */
    border-radius: 15px; /* More rounded corners */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Enhanced shadow */
    transform: scale(1.05); /* Slight zoom effect */
    transition: transform 0.3s ease-in-out; /* Smooth transition for hover */
}

.container:hover {
    transform: scale(1.1); /* Zoom in on hover */
}

h1 {
    color: #333; /* Kept dark color for readability */
    font-size: 3em; /* Larger font size */
    margin-bottom: 0.5em; /* Adjusted margin */
}

p {
    color: #555; /* Slightly lighter paragraph text */
    font-size: 1.2em; /* Larger font size for paragraph */
}

.email-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 15px;
    background-color: #ff7e5f; /* Using one of the gradient colors */
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.email-button:hover {
    background-color: #feb47b; /* Using the other gradient color for hover */
    transform: translateY(-2px);
}
