
html {
    position: relative;
    min-height: 100%;
}

/* Body font family */
body {
    font-family: Arial, Helvetica, sans-serif;
    background-image: url("../images/background1.png");
}

main {
    margin: 80px 0px;
}

.article-class, .contact-links {
    background-color: whitesmoke;
    padding: 30px;
    margin-bottom: 30px;
}

hr {
    border: 1px solid lightgray;
}

.about-me, .connect-header {
    color: #4682B4;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: bold;
    /* font-size: 32px;
    margin-bottom: 33px; */
}

.connect-header {
    text-align: center;
}

/* Nav bar */

.nav-logo {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 24px;
    font-weight: bold;
    color: whitesmoke;
    background: #4682B4;
}

/* hover color and border */
.navbar-default .navbar-nav > li > a:hover {
    color: #4682B4;
}

#logo {
    color: whitesmoke;
    background: #4682B4;
    font-size: 24px;
    font-weight: bold;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

/* media query to change background color of nav */

@media only screen and (max-width: 767px) {
    .navbar-header {
        background-color: #4682B4;
    }
}

/* Connect With Me section */
.connect-header {
    font-size: 25px;
}

.connect-image-links {
    padding-top: 15px;
    text-align: center;
}

.connect-png {
    margin-right: 5px;
    margin-left: 5px;
}

/* Entire footer */
.primary-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    background-color: darkgray;
}

/* Footer container */
.div-footer{
    height: 6px;
    padding-top: 3px;
    background-color: #4682B4;
}

/* Footer text */
.p-footer {
    margin-top: 15px;
    color: whitesmoke;
    text-align: center;
}

/* Index Page */

/* profile picture */
.img-thumbnail {
    float: left;
    height: 30%;
    width: 30%;
    margin: 0 20px 10px 0;
}

.main-table, tr, td {
    border: 1px none  black;
    font-weight: bold;
}

td {
    padding: 25px;
}

/* Portfolio Page */
.game-pic {
    padding-bottom: 25px;
}

/* Contact Page */
.contact-form {
    border-radius: 0;
    min-width: 100%;
    max-width: 100%;
}

.submit-btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: lighter;
    color: whitesmoke;
    background-color: #4682B4;
    border: 0;
}

.submit-btn:hover {
    opacity: .8;
}