.header {
    display: flex;
    justify-content: space-between;
}
#title-slogan {
    font-family: sans-serif;
}
#title-slogan h1 {
    font-family: 'Tektur', cursive;
    font-size: 75px;
    margin-left: 15px;
}
#sojourners-text {
    font-family: 'Tektur', cursive;
    color: #fff;
    background-color: #363636;
}
#tagline {
    margin: -20px 0 0 15px;
    font-weight: bold;
    font-style:italic;
    font-size: 25px;
    font-family: sans-serif;
    letter-spacing: 10px;
    color: #363636;
}
#links {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 25px;
}
#blogLink {
    height: 75px;
    width: 150px;
    background-color: #29bd61;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 20px;
    font-size: 35px;
    margin-right: 50px;
    cursor: pointer;
}
#blogLink:hover {
    text-decoration: underline;
}
img {
    max-width: 100px;
}

#login_container {
    width: 500px;
    height: 500px;
    background-color: rgba(0, 0, 0, 1.0);
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

#signoutbtn {
    display: none;
}

@media only screen and (max-width: 980px) {
    .header {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #title-slogan h1 {
        font-size: 50px;
        text-align: center;
    }

    #tagline {
        font-size: 15px;
    }

    img {
        max-width: 75px;
    }

    #blogLink {
        height: 55px;
        width: 130px;
        font-size: 25px;
    }

    #links {
        margin-top: 15px;
    }

    #login_container {
        width: 90%;
        height: 70%;
    }
}