body {
    background-image: url('/images/bg-pattern.png');
    background-color: #050505;
    display: flex;
    justify-content: space-between;
    color: #ffffff;
    min-height: 100dvh;
    flex-direction: column;
    align-items: center;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 600px;
    flex: 1;
    justify-content: center;
    gap: 20px;
    padding: 0 15px 20px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px 20px 20px;
    gap: 0 11px;
    line-height: 1;
    text-align: center;
    width: 100%;
}

header img {
    width: 188px;
}

header a {
    text-decoration: none;
}

header a.logar {
    color: #979797;
    font-weight: 500;
    padding: 0;
    font-size: 16px;
    transition: .2s ease;
}

header a.logar:hover {
    color: white;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 20px;
    font-size: 13px;
    color: #414141;
    background: #090909;
    gap: 15px;
    width: 100%;
}

footer img {
    width: 123px;
}



@media screen and (max-width: 780px) {
    header img {
        width: 150px;
    }

    header a.logar {
        font-size: 14px;
        color: #888;
    }

    header {
        padding: 15px 20px 15px 15px;
        padding-top: 12px;
    }

    footer {
        font-size: 11px;
        text-align: right;
        color: #555;
    }
}
