body {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
    background-color: #000;
    color: #ddd;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
}

#login {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

a {
    color: red;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#terms {
    margin: auto auto 1em;
    font-size: .8vw;
}

.btn {
    border-radius: 1em;
    padding: .5em 1em;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    transition: background-color .5s linear, transform .2s ease-in-out;

}

.btn:hover {
    background-color: #ddd;
    transform: scale(1.05);
    text-decoration: none;
}

#loggedin {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 90%;
}

#oauth,
.media-body {
    display: none;
}

.media {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2em;
}

.media-object {
    border-radius: 100%;
}