

.competition-banner {
    position: relative;
    background-repeat: no-repeat;

    color: #fff;

    .background-image {
        width: 100%;
        position: relative;
        
        img {
            width: 100%;
        }

        img.mobile {
            display: block;

            @media only screen and (min-width: 768px) {
            display: none;
            }
        }

        img.desktop {
            display: none;

            @media only screen and (min-width: 768px) {
            display: block;
            }
        }
    }

    .container {
        width: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);

        .title-wrapper {
            padding: 24px;
            .title {
                text-align: center;
                font-size: 2em;
                margin-bottom: 24px;

                @media only screen and (min-width: 768px) {
                    font-size: 2.5em;
                }

                span {
                    font-size: inherit;
                    color: #FEA6DF;
                }
            }

            a {
                margin: auto;
            }
        }
    }
}