.container{
    max-width: 1080px;
    width: 100%;
    padding: 0px 1.25rem;
    margin: 0 auto;
    position: relative;
}
scribby-mascot{
    --mascot-width: 12rem;
    --mascot-height: auto;
    width: 12rem;
    height: auto;
    aspect-ratio: 450 / 395;
    margin-top: -4.5rem;
    margin-left: -1.75rem;
    transform: translateX(1.75rem);
}

scribby-mascot canvas{
    display: block;
}
.box{
    width: fit-content;
    margin: 0 auto;
    padding: 3rem;
    .login-header{
        display: flex;
    }
    .box-text{
        width: 400px;
    }
}

@media (max-width: 500px){
    scribby-mascot{
        --mascot-width: 100%;
        --mascot-height: auto;
        width: 100%;
        height: auto;
        aspect-ratio: 450 / 395;
        margin-top: -2.5rem;
        transform: translateX(0px);
        flex: 1;
    }
    .box{
        padding: 3rem 1rem;
        .box-text{
            span {
                display: block; 
                flex: 1;
            }
            width: 100%;
            & h1 {
                align-items: center;
                justify-content: center;
                font-size: 2.5rem;
            }
        }
    }
    .discord, .google{
        width: 100%;
    }
}