body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.landing {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    background-color: #f4f4f4;
}

.content h1 {
    font-size: 2em;
    color: #333;
}

.content p {
    color: #666;
    margin: 20px auto;
    max-width: 600px;
}

.social-links {
    margin-top: 20px;
}

.social-link {
    text-decoration: none;
    color: #fff;
    background-color: #007bff;
    padding: 10px 15px;
    margin: 0 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.social-link:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .content h1 {
        font-size: 1.5em;
    }
    .content p {
        max-width: 90%;
    }
}
