body {
    margin: 0;
    background-color: #0B536A;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
}

a {
    /* text color from body */
    color: inherit;
    /* text decoration from body */
    text-decoration: inherit;
}

.site-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    padding: 2em;
    /* background-color: lightgoldenrodyellow; */
    text-align: center;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    /* background-color: lightblue; */
    text-align: center;
    justify-content: center;
    align-items: center;
}

footer {
    /* background-color: lightgreen; */
    font-size: .8em;
    text-align: center;
}

.logo {
    width: 100%;
    height: auto;
}

.fab {
    font-size: 2.5em;
    text-align: center;
    padding: .25em;
}

.fa-twitter:hover {
    color: #1da1f2;
}

.fa-github:hover {
    color: #000000;
}

.padding {
    padding: 2em 0;
}

.larger-text {
    font-size: 2.6em;
}

span.line {
    display: inline-block;
}

.website-link {
    text-decoration: underline;
}

a.website-link:hover {
    font-weight: bold;
}

/* For Desktop Screens add some alterations */
@media (min-width: 992px) {

    /* Don't have the banner logo full width of the screen */
    .logo {
        width: 60%;
    }
}

@media (min-width: 1200px) {

    /* Remove lower padding to move h1 up */
    header {
        padding-bottom: 0;
    }

    /* Remove upper padding to move h1 up */
    .padding {
        padding-top: 0;
    }

    /* Increase h1 size */
    .larger-text{
        font-size: 5em;
    }
}