body
{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #efedef;
    color: #343a40;
}

.container
{
    text-align: center;
    background-color: #ffffff;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

h1
{
    font-size: 2em;
    margin-bottom: 0.5em;
    color: #007bff;
    font-weight: 700;
}

p
{
    font-size: 1.5em;
    color: #343a40;
    font-weight: 400;
}

.logo
{
    max-width: 250px;
    margin-bottom: 1em;
}
@media (max-width: 600px)
{
    h1
    {
        font-size: 2.5em;
    }

    p
    {
        font-size: 1.2em;
    }
}