/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f9; /* Light, neutral background */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    text-align: center;
    /* Optional: For a background image */
     background-image: url('background.jpeg'); 
     background-size: cover; 
     background-position: center; 
}

/* Main Container */
.container {
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%;
}

/* Site Name/Logo */
.logo {
    font-size: 2.5em;
    font-weight: 600;
    color: #5a7dff; /* A distinctive accent color */
    margin-bottom: 20px;
}

/* Main Content */
.content h2 {
    font-size: 2em;
    font-weight: 300;
    color: #222;
    margin-bottom: 15px;
}

.content p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Social Links */
.social {
    margin-top: 30px;
}

.social a {
    color: #5a7dff;
    text-decoration: none;
    font-weight: 600;
    margin: 0 15px;
    padding: 8px 0;
    transition: color 0.3s ease-in-out;
}

.social a:hover {
    color: #3e5bc8;
}