/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.logo h1 {
    font-size: 2.5rem;
    color: #2a7ae2;
    margin-bottom: 20px;
    font-weight: 700;
}

.content h2 {
    font-size: 1.75rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.footer p {
    font-size: 0.875rem;
    color: #888;
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    .logo h1 {
        font-size: 2rem;
    }

    .content h2 {
        font-size: 1.5rem;
    }

    .content p {
        font-size: 0.875rem;
    }

    .footer p {
        font-size: 0.75rem;
    }
}
