body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to bottom, #FF6600, #ffffff);
    color: #333;
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 500px;
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    color: #0078d4;
    font-size: 44px;
    margin-bottom: 15px;
}

p {
    font-size: 18px;
    margin: 10px 0;
    color: #555;
}

.email-link {
    text-decoration: none;
    color: #0078d4;
    font-weight: bold;
    font-size: 18px;
}

.email-link:hover {
    text-decoration: underline;
    color: #005bb5;
}

.copy-btn {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #0078d4;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.copy-btn:hover {
    background-color: #005bb5;
}