body {
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    font-family: 'DM Sans', sans-serif;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

h1 {
    font-size: 40px;
    margin: 0;
    color: #333;
    text-align: center;
}

p {
    font-size: 16px;
    color: #636363;
    margin: 0;
    line-height: 1.5;
    text-align: left;
    margin-bottom: 1rem;
}

a:hover {
    color: #333;
    text-decoration: underline;
}

span{
    color: #2963c2;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
}   

.logo {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
    display: block;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    body {
        padding: 30px 20px;
    }

    h1 {
        font-size: 32px;
        text-align: center;
    }

    p {
        font-size: 15px;
        text-align: center;
    }

    .logo {
        width: 70px;
        height: 70px;
        align-self: center;
    }

    span{
        display: flex;
    justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    body {
        padding: 20px 15px;
    }

    h1 {
        font-size: 28px;
    }

    p {
        font-size: 14px;
    }

    .logo {
        width: 60px;
        height: 60px;
    }
}