
/* Add rainbow colours to every header */
.Header {
    border-bottom: 5px solid transparent !important;
    border-image: url('https://www.sydneyu3a.org/api/WebsiteCached/DownloadFile?FileGuid=44a0f29e-c8e3-4179-beb7-a46fce2b7707#EXT=.png') 1 round !important;
}

/* GothamRounded font*/
@font-face {
    font-family: 'GothamRounded';
    src: url('https://www.sydneyu3a.org/api/Website/DownloadFile?FileGuid=46262654-493f-49e5-b1f0-f62a73e66ddd#EXT=.otf') format('opentype');
}

/* GothamRounded &nbsp is way too big*/
.limited-nbsp {
    display: inline-block;
    width: 3px; /* Set your desired width */
    overflow: hidden;
}

.u3a--background, .EventPageWrapper {
    /*background: linear-gradient(45deg,RGBA(88,89,91,.40), RGBA(10,131,167,.40), RGBA(59,140,180,0.40), RGBA(29,178,88,.40), RGBA(255,213,61,.40), RGBA(242,100,840,0.40));*/
    background: linear-gradient(135deg,RGBA(66,184,178,.40), RGBA(10,131,167,.40));
    animation: gradientAnimation 55s ease infinite;
    margin-top: -10px;
    background-size: 400% 400%;
}

.members--formlayout {
    /*background: linear-gradient(45deg,#4A4A49, #0183a7, #19A749, #FFD62D, #F26454);*/
    background: linear-gradient(45deg,#4A4A49, #0183a7);
    animation: gradientAnimation 55s ease infinite;
    background-size: 400% 400%;
    background-size: cover;
    max-width: 100% !important;
    min-height: 100%;
    flex: 0 0 100%;
}

.members--formlayout--container {
    max-width: 600px;
    align-self: auto;
    background: white;
}

@media all and (max-width: 750px) {
    /* CSS rules here for screens lower than 750px */
    .members--formlayout--container {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media all and (min-width: 750px) {
    /* CSS rules here for screens above 750px */
    .members--formlayout--container {
        margin-left: 25% !important;
        margin-right: auto !important;
    }
}

    @keyframes gradientAnimation {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

.u3a--background::after, .EventPageWrapper:after {
    /*background: linear-gradient(135deg,RGBA(88,89,91,.40), RGBA(10,131,167,.40), RGBA(59,140,180,0.40), RGBA(29,178,88,.40), RGBA(255,213,61,.40), RGBA(242,100,840,0.40));*/
    background: linear-gradient(135deg,RGBA(66,184,178,.40), RGBA(10,131,167,.40));
    opacity: 0.5;
    animation: gradientAnimation2 60s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientAnimation2 {
    0% {
        background-position: 50% 0%;
    }

    50% {
        background-position: 50% 100%;
    }

    100% {
        background-position: 50% 0%;
    }
}