* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    color: #333;
    text-align: center;
}

.container {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #007bff;
}

p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

p.small {
    font-size: 0.9em;
    color: #555;
}

.social-links a {
    text-decoration: none;
    color: #007bff;
    margin: 0 10px;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #0056b3;
}
