/* resets default styles */
body, h1, p {
    margin: 0;
    padding-bottom: 10px;
}

/* sets the font for the entire page */
body {
    font-family: Arial, sans-serif;
    /*background-color: #f0f0f0;*/
    color: #333;
    line-height: 1.6;
}
      
.home:hover {
        text-decoration: underline;
        cursor: pointer;
      }
    
.portfolio:hover {
        text-decoration: underline;
        cursor: pointer;
    }
    
.resume:hover {
        background-color: white;
        color: #333;
        cursor: pointer;
    }
      

/* styles the main content area */
.main {
    text-align: center;
}

.intro {
    margin-top:60px;
    background: url(../images/flowers_pinterest.jpg);
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    padding: 40px
}

.about_me {
    text-align: left;
    font-size: 18px;
    padding: 10px;
    font-family: Arial, Helvetica, sans-serif;
    margin: 2%;
}

.education {
    text-align: left;
    font-size: 18px;
    padding: 10px;
    font-family: Arial, Helvetica, sans-serif;
    margin: 2%;
}

.skills-list {
    text-align: left;
    font-size: 30px;
    padding: 10px;
    font-family: Arial, Helvetica, sans-serif;
    margin: 2%;
}

.skills {
  display: inline-block;
}

.skills:hover {
    background:url(../images/flowers_pinterest.jpg);
    background-size: cover;
    color:#333;
    border-color: #333;
}

.cs_portfolio {
    text-align: left;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    padding: 10px;
    margin: 2%;
}

.dcp_portfolio {
    text-align: left;
    font-size: 18px;
    padding: 10px;
    font-family: Arial, Helvetica, sans-serif;
    margin: 2%;
}

/* styles the footer */
footer {
    background-color: #333;
    color: white;
    padding: 10px 0;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    position: fixed;
    width: 100%;
    bottom: 0;
    padding-top:10px;
    padding-bottom:10px;
}

