.welcome-container {
    z-index: 1;
    height: 100%;
    width: 100%;
    background-color: var(--red);
    position: absolute;
    top: 0px;
    left: 0px;
}

.welcome-banner-right {
    float: right;
    width: 70%;
    height: 100%;
    background-color: var(--blue);
    position: relative;
}

.welcome-banner-right p {
    padding-bottom: 0;
    padding-right: 2em;
}

.welcome-content-container {
    position: absolute;
    top: 70%;
    left: -32px;
    width: 95%;
    display: inline-block;
}

.welcome-content-container img {
    width: auto;
    height: 60px;
}

.welcome-banner-right a {
    font-size: 18px;
    color: var(--darkblue);
    text-decoration: none;
}

.welcome-banner-right a:hover {
    color: var(--brokenwhite);
}

#wc-image-container {
    float: left;
}

#wc-text-container {
    align-items: center;
    display: flex;
    float: right;
    height: 60px;
}

#welcome-arrow {
    font-size: 1.3em;
    font-family: neuemachina;
    padding-left: 1.5em;
    margin-top: -0.3em;
}

@media only screen and (max-width: 985px) {
    .welcome-banner-right {
        width: 100%;
        height: 70%;
        top: 30%;
    }

    .welcome-content-container {
        position: relative;
        top: -30px;
        left: 20%;
        width: 65%;
        height: 90%;
        display: inline-block;
    }

    #wc-text-container {
        position: absolute;
        align-items: center;
        display: flex;
        float: right;
        height: 60px;
        bottom: 0;
    }
}