.newbie-banner {
    background-image: url('../assets/banner/desktop-newbie-banner.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 90vh;
    display: flex;
    align-items: end;
    justify-content: center;
}

@media screen and (max-width: 800px) {
    .newbie-banner {
        background-image: url('../assets/banner/mobile-newbie-banner.jpg');
        height: 80vh;
    }
}

.newbie-banner .banner-content {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}