/* Importing fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: #f8f8f8;
    color: #333;
}

.container {
    text-align: center;
    max-width: 600px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.logo {
    max-width: 150px;
    margin-bottom: 20px;
}

h1 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #333;
}

p {
    font-size: 1em;
    margin-bottom: 20px;
    color: #555;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    font-size: 1em;
    color: #007bff;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #333;
}

/* Media query untuk perangkat mobile */
@media (max-width: 768px) {
    body {
        background-color: #fff;
    }

    .container {
        border-radius: 0;
        box-shadow: none;
        max-width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 1rem;
    }
}