/* thankyou.css */
/* Theme: Modern, clean, matching typical portfolio styles */


body {
    background: linear-gradient(135deg, #667eea 100%);
    color: #f5f5f5;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thankyou-container {
    background: rgb(255 255 255 / 95%);
    padding: 3rem 2.5rem;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    text-align: center;
    max-width: 400px;
}

.thankyou-container h1 {
font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000000;
    letter-spacing: 1px;
}

.thankyou-container p {
font-size: 1.15rem;
    color: #000000;
    margin-bottom: 2rem;
}

.thankyou-container a {
display: inline-block;
    padding: 0.7rem 1.5rem;
    color: #000000;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    border: 1px solid #667eea;
}

.thankyou-container a:hover {
    background: #667eea;
    color: #ffffff;
}