body {
    margin: 0;
    background-color: #190719;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    margin-top: -60px;
}

.button a {
    background: linear-gradient(157.34deg, #F7C789 -2.58%, #E7AC9B 20.06%, #C384BA 40.23%, #8840F4 71.89%);
    padding: 20px 38px;
    font-family: 'Inter';
    font-weight: 800;
    font-size: 32px;
    line-height: 1.1em;
    color: #000;
    text-decoration: none;
    border-radius: 18px;
    animation: pulse 0.9s infinite linear;
}

.container {
    max-width: 1024px;
}

.img-top, .img-bottom {
    width: 100%;
}

@font-face {
    font-family: 'Inter';
    src: url('./assets/inter-extrabold.woff2') format('woff2'),
         url('./assets/inter-extrabold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(0.9);
    }
}