#get_tickets {
    padding: 128px var(--side-padding);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;

    h1 {
        display: flex;
        flex-direction: column;
        align-items: center;

        span:first-child {
            font-size: 96px;
        }

        span:last-child {
            font-size: 100px;
        }

        @media screen and (max-width: 700px) {
            span:first-child {
                font-size: 13.75vw;
            }

            span:last-child {
                font-size: 14.25vw;
            }
        }
    }

    a {
        background-image: linear-gradient(to right, var(--blue), var(--purple), var(--pink));
        position: relative;
        text-align: center;
        overflow: hidden;
        padding: 12px;
        border-radius: 12px;
        width: 100%;
        max-width: 500px;

        .background-cover {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background-color: #ffffff;
            transition: width 0.3s;
        }

        .button-content {
            position: relative;
            z-index: 1;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        span {
            background-image: linear-gradient(to right, var(--blue), var(--purple), var(--pink));
            background-clip: text;
            color: transparent;
            font-size: 40px;
            font-family: "Oswald", sans-serif;
            font-weight: bold;
            transition: color 0.3s;
        }

        .corner-dots {
            height: 100px;

            svg {
                transition: fill 0.3s;
            }
        }

        .corner-dots:first-of-type svg {
            fill: var(--blue);
        }

        .corner-dots:last-of-type svg {
            fill: var(--pink);
        }
    }

    a:hover {
        .background-cover {
            width: 0;
        }

        span {
            color: #ffffff;
        }

        .corner-dots svg {
            fill: #ffffff;
        }
    }
}
