body > header {
    background-color: #d0d0d0;
    color: #313131;
    display: flex !important; /* Use !important to override Bootstrap */
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.11);
    font-family: -apple-system,  'Helvetica Neue', BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.4;
}

/* General Styles */
body {
    font-family: -apple-system,  'Helvetica Neue', BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.4;
}

#container {
    margin: 10px;
}

hr {
    margin: 0;
}

/* Typography */
h2.Name {
    color: #585858;
    font-size: 42px;
}

h3.Title {
    color: #65C67C;
    margin: 10px 0 0 0;
}

h2.Hobbies {
    color: #585858;
    margin-bottom: 20px;
}

h4.Welcome {
    font-size: 62px;
    font-family: Times;
    color: black;
    margin-left: 4%;
}

p.learn-more {
    margin-left: 4%;
    margin-top: 6%;
}

div.paragraph {
    text-indent: 6%;
    margin-left: 0;
    margin-right: 4%;
    text-align: justify;
    line-height: 1.1;
    letter-spacing: 0.10px;
}

/* Header Styles */
header {
    background-color: #ffffff;
    color: #313131;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.11);
}

.logo a {
    text-decoration: none;
    color: #313131;
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #313131;
    font-size: 18px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ff6347;
}

/* Image Styles */
img.pics {
    width: 200px;
    height: 200px;
    padding: 0.5%;
    border-radius: 4%;
}

img.resume {
    border-radius: 10%;
    margin-top: 4%;
    display: block;
    height: 500px;
}

img.software-image {
    margin: 1% auto;
    border-radius: 1%;
    width: 260px;
    height: 230px;
    display: block;
}

/* Link Styles */
a.nav {
    min-width: 50px;
    min-height: 50px;
    padding: 10px;
}

/* Container Styles */
.my-container {
    padding: 2% 2% 0% 2%;
}

/* Icon Styles */
span.glyphicon {
    font-size: 2em;
}

span.email {
    color: blue;
    font-size: 16px;
}

/* Footer Styles */
div.footer {
    z-index: -1;
    height: 120px;
    width: 100%;
    background-color: #8A8A8A;
}

/* Color Classes */
#Software { color: #FA5858; }
#Contact { color: #2E64FE; }
#Hobbies { color: #2E9AFE; }

/* Media Queries */
@media screen and (max-width: 799px) {
    body > header {
        display: none !important;
    }
}

/* @media screen and (min-width: 800px) {
    body > header {
        display: flex !important;
    }
    
    img.resume {
        margin-left: 0;
        margin-right: auto;
    }

    h1.Name {
        font-size: 80px;
    }

    h2.Title,
    h2.Hobbies {
        font-size: 66px;
    }

    a {
        min-width: 80px;
        min-height: 60px;
        padding: 10px 0;
    }

    p.link-titles {
        font-size: 18px;
    }

    img.software-image {
        width: 500px;
        height: 330px;
    }
}

@media screen and (min-width: 1400px) {
    a {
        min-width: 120px;
    }

    p.link-titles {
        font-size: 20px;
    }
}

@media screen and (min-width: 2400px) {
    a {
        min-width: 150px;
        min-height: 80px;
        padding: 14px 0;
    }

    p.link-titles {
        font-size: 26px;
    }
} */