html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family:PingFang SC;
    background-color: #03091eff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-image: url('./background.png');
    background-size: 100% 520px;
    background-position: top center;
    background-repeat: no-repeat;
}

@media (min-width: 800px) {
    body {
        background-size: 600px 832px;
    }
}

.top-logo-img {
    display: block;
    width: 76px;
    margin-left: 20px;
}

.top-title {
    margin-top: 8px;
    margin-left: auto;
    margin-right: auto;
    width: 325px;
    line-height: 29px;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

.buttons {
    margin-top: 288px;
    width: 295px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 800px) {
    .buttons {
        margin-top: 550px;
    }
}

.buttons .button {
    width: 100%;
    height: 44px;
    border-radius: 22px;

    display: flex;
    align-items: center;
    justify-content: center;
    font-weight:700;
    font-size: 15px;
    border: none;
    cursor: pointer;
}

.buttons .button:active {
    transform: scale(0.99);
    transition: all 0.1s ease-in-out;
}

.buttons .button img {
    width: 24px;
    height: 24px;
    margin-right: 6px;
}

.buttons .button-fill {
    background-color: #fff;
    color: #0b1e38;
}

.buttons .button-outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}