body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* styles my name */
h1 {
    font-size: 2.5rem;
    color: white;
    margin: 30px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

header{
    background-color: purple;
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

/* styles the navigation bar */
nav {
    margin: 40px 20px;
}

nav ul li {
    display: inline-block;
    margin: 0px 15px;
}

/* styles the links in the header and the contact me section */
.links {
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
}

.links:hover{
    color: lightskyblue;
}

body {
    background-color: rgb(94, 94, 94);
}

/* styling for the three sections of the body */
.page-section {
    display: flex;
    justify-content: space-between; 
    margin: 40px 20px;
    color: white;
}

h2 {
    font-size: 2rem;
    margin: 30px;
    color: white;
    position: relative;
    left: 30px;
    padding: 20px;
    border-right: 2px solid white;
    width: 12%;
}

/* styling specific to the about me section */
#about-me p {
    margin: 40px 20px;
    font-size: 1.2rem;
    line-height: 1.5;
    width: 60%;
}

#about-me img {
    width: 15%;
    height: 20%;
    border: 5px solid purple;
    margin: 40px 20px;
}

#skills-div{
    display: flex;
    flex-direction: row;
    align-items: space-around;
    justify-content: space-around;
    flex: 0 0 80%;
    /* border: 5px solid red; */
}

.skills-list li{
    display: flex;
    justify-content: space-around; 
    align-items: center;
    margin: 40px 20px;
    font-size: 1.4rem;
    /* border: 5px solid green; */
}

/* styling specific to the my projects section */
.projects {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    flex: 0 0 80%;
}

.card {
    display: flex;
    flex-direction: column;
    flex: 0 0 30%;
    height: 300px;
    justify-content: flex-end;
    align-items: flex-start;
    border: 5px solid purple;
    margin: 30px; 
    padding: 10px;
}

.card:hover {
    box-shadow: inset 0px 0px 8px lightskyblue, 0 0 8px lightskyblue;
    /* color: lightskyblue; */
}

h3 {
    font-size: 2rem;
}

.tech-text{
    font-size: 1rem;
    margin: 5px 0 0;
}

.github {
    color: black;
}

.project-title {
    font-size: 1.5rem;
    background-color: blueviolet;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* makes the first card larger than the rest */
#featured-card {
    flex: 0 0 67%;
    background-image: url("../images/geekseek-screenshot.png");
    height: 400px;
}

/* image links for the rest of the projects*/
#image-two {
    background-image: url("../images/employee-tracker-screenshot.png");   
}

#image-three {
    background-image: url("../images/musician-finder-screenshot.png");   
}

#image-four {
    background-image: url("../images/code-quiz-screenshot.png");   
}

#image-five {
    background-image: url("../images/social-network-screenshot.png");   
}

/* styling specific to the contact me section */
#contact-me ul {
    display: flex;
    justify-content: space-around;
    margin: 40px 20px;
    width: 80%
}

/* styles the footer */
footer {
    background-color: purple;
    display: flex;
    justify-content: center;
    padding: 20px;
}

h4 {
    color: white;
    font-size: .75rem;
}

/* allows the design to respond to changing page size */
@media screen and (max-device-width: 768px) { 
    .page-section{
        flex-direction: column;
        align-items: center;
    }

    #about-me p{
        font-size: 1.8rem;
    }

    h2 {
        border-bottom: 2px solid white;
        border-right: 0px;
    }
  }
  