html {
    height: 100%;
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fafafa;
}

body {
    min-height: 100%;
    display: flex;
    flex-direction: row;
    background-color: #e8eaea;
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: #999;
}

a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    transition: all 0.3s;
}

#backgroundContainer {
    height: 100%;
}

    #backgroundContainer > div:first-of-type {
        height: 100%;
        background-image: url(https://cdn2.hubspot.net/hub/494838/hubfs/Global%20Home%20Page%20Banner.jpg);
        background-position: center;
        background-size: cover;
        color: azure;
        text-shadow: 0 0 48px rgba(0, 0, 0, 0.75);
    }

#overlay1 {
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}

#overlay2 {
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

    #overlay2 > h1:first-of-type {
        position: absolute;
        padding: 30px;
        font-weight: 400;
    }

#login {
    right: 0;
    position: absolute;
    margin: 30px;
    width: 150px;
    background-color: #45b8c4;
    border-radius: 10px;
    font-size: 18px;
}

    #login a {
        color: #ffffff;
    }

#mainText {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    margin-top: 200px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 1080px;
    border-radius: 10px;
    padding: 50px;
}

    #mainText span {
        line-height: 1.5;
        border-bottom: 3px solid #45b8c4;
    }
