html, body {
    font-family: Comic Sans MS, arial, verdana, sans-serif !important;
    box-sizing: border-box !important;
}

* {
    box-sizing: border-box !important;
}

.main {
    overflow: hidden;
    overflow: clip;
    width: 100%;
    /*min-height: 100vh;*/
    text-align: center;

    position: relative;

    display: flex;
    justify-content: center;
}

.bg {
    /*position: absolute;*/
    /*left: 50%;*/
    /*transform: translate(-50%, 0%);*/
    width: max(100svw, 1920px);
    /*min-height: 100vh;*/
}

.logo {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translate(-50%, 0);

    z-index: 10;
}

.footer {
    border-radius: 16px;
    width: calc(100vw - 60px);

    backdrop-filter: blur(32px);

    position: fixed;
    bottom: 16px;
    left: 30px;

    text-align: center;

    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    line-height: 19.09px;
    color: #0B1270;

    background: rgba(254, 254, 255, 0.64);
}

@media(max-width: 1000px) {
    .logo {
        bottom: calc(100% - 200px);
        width: 800px;
    }

    .main {
        padding-top: 64px;
        min-height: 100svh;
        align-items: flex-end;
    }

    .bg {
        width: max(100svw, 1280px);
    }

    .footer {
        position: absolute;
    }
}

@media(max-width: 600px) {
    .logo {
        top: 10%;
        width: 600px;
    }

    .bg {
        width: max(100svw, 1100px);
    }
}
