.home-header-outer {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://www.unitestudents.com/UniteStudents/media/Brand/content-creators/content-creator-2025-header-desktop.webp);
    background-position: 50%;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-header-text-wrap {
    color: #fff;
    width: 40%;
}
.home-header-h1 {
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 4em;
    line-height: 1;
    margin: 20px 0;
}
.coloured-u {
    color: #FFDC00;
}
.home-header-h2 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1.5em;
    margin: 20px 0;
}
.home-header-cta {
    display: block;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    background-color: #FFDC00;
    color: #2F2F2F;
    border: none;
    font-size: 18px;
    width: 250px;
    padding: 10px 0;
    margin: 10px 0 30px;
    border-radius: 3px;
    cursor: pointer;
}
.button-text {
    text-decoration: none;
}
/*tablet*/
@media screen and (min-width:768px) and (max-width:1023px) {
    .home-header-outer {
        background-position: 50%;
        height: auto;
    }
    .home-header-text-wrap {
        width: 90%;
    }
    .home-header-h1 {
        font-size: 3em;
    }
    .home-header-h2 {
        width: 60%;
    }
}
/*mobile large*/
@media screen and (min-width:431px) and (max-width:767px) {
    .home-header-outer {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://www.unitestudents.com/UniteStudents/media/Brand/content-creators/content-creator-2025-header-mobile.webp);
        background-position: 100%;
    }
    .home-header-text-wrap {
        width: 90%;
    }
    .home-header-h1 {
        font-size: 2em;
    }
    .home-header-h2 {
        font-size: 1em;
        width: 80%;
    }
}
/*mobile small*/
@media screen and (max-width:430px) {
    .home-header-outer {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://www.unitestudents.com/UniteStudents/media/Brand/content-creators/content-creator-2025-header-mobile.webp);
        background-position: 100%;
    }
    .home-header-text-wrap {
        width: 90%;
    }
    .home-header-h1 {
        font-size: 1.6em;
    }
    .home-header-h2 {
        font-size: 1em;
        width: 80%;
    }
}