div.header {
    div.wrapper {
        display: flex;
        gap: 22px;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-end;

        &:has(> p.title) {
            > p.title {
                margin-top: -70px;
                margin-bottom: -20px;
                width: 100%;
                font-family: 'Bangers';
                font-size: 8rem;

                @media (max-width: 550px) {
                    font-size: 6rem;
                }
            }

            align-items: center;
        }

        div.meta {
            max-width: 700px;

            p.title, p.date, p.time {
                font-family: 'Bangers';
                

                &.title {
                    font-size: 7rem;

                    @media (max-width: 550px) {
                        font-size: 6rem;
                        text-align: center;
                    }
                }

                &.date {
                    font-size: 3rem;
                }

                &.time {
                    font-size: 2rem;
                }
            }

            p.subtitle {
                font-size: 1.3rem;
            }

            a.button {
                --colour-base: var(--themeColour);
                margin-top: 36px;
                display: flex;
                gap: 16px;
                justify-content: space-between;
                align-items: center;
                width: 250px;

                img {
                    width: 40px;
                }

                svg {
                    margin-left: 8px;
                    margin-right: 8px;
                    height: 25px;
                }

                @media (max-width: 550px) {
                    margin-left: auto;
                    margin-right: auto;
                }
            }
        }

        div.card {
            background-color: white;
            border-color: var(--themeColour);
            color: black;
            position: relative;

            margin-top: 60px;
            max-width: 600px;
            width: 100%;

            h1 {
                text-align: center;
            }

            img {
                position: absolute;
                right: 0;
                height: 300px;
                top: -260px;
                filter: drop-shadow(0px 4px 4px rgba(255, 255, 255, 0.25));
            }

            p:not(:first-of-type) {
                margin-top: 18px;
            }

            @media (max-width: 550px) {
                img {
                    position: relative;
                    height: 150px;
                    display: block;
                    margin: 0 auto;
                    top: unset;
                }
            }
        }

        div.decorator {
            img {
                max-height: 450px;
            }
        }

        @media (max-width: 1200px) {
            div.decorator {
                display: none;
            }
        }
    }
}

div.divider {
    position: relative;
    height: 125px;
    margin-bottom: -44px;

    @media (max-width: 550px) {
        margin-top: -44px;
    }

    > div.decorator {
        background-color: var(--themeColour);
        height: 125px;
        transform: rotate(-2deg);
        position: absolute;
        left: -100px;
        right: -100px;
    }
}

div.main-body {
    p.title {
        font-size: 3rem;
        font-family: 'Bangers';
        text-align: center;

        &:has(img) {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 36px;
        }
    }

    div.included {
        margin-top: 36px;
        display: flex;
        flex-direction: column;
        gap: 36px;
        align-items: center;
        flex-wrap: wrap;

        div.item {
            max-width: 700px;
            width: 100%;
            align-items: center;
            display: flex;
            gap: 18px;
            
            div.emoji {
                width: 150px;
                flex-shrink: 0;

                img {
                    width: 100%;
                }
            }

            div.content {
                font-size: 1.6rem;
                font-family: 'Bubblegum Sans';
                font-weight: normal;
            }

            &:nth-child(even) {
                flex-direction: row-reverse;
            }
            
            @media (max-width: 600px) {
                flex-direction: column !important;
                align-items: center;
            }
        }
    }
}

div.tickets {
    div.wrapper {
        > h3 {
            text-align: center;
            margin-bottom: 18px;
            font-size: 2rem;
        }
    }
}