:root {
    --header-footer-color: rgb(20, 59, 167);
    --primary-section-background: rgb(19, 19, 190);
}
body {
    color: white;
    background: rgb(92, 135, 216);
}
h2 {
    color: black;
}
/* Start to Header Styling */
header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color:var(--header-footer-color);
}
header h1 {
    padding: 30px;
    text-shadow: 5px 5px blue;
    font-size: 45px;
    font-weight: bolder;
    font-style: italic;
}
header h1:hover {    
    font-size: 55px;
    text-shadow: 5px 5px rgb(32, 160, 235);
}
header nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    padding: 25px;
}
header nav ul li {
    font-size: medium;
    padding: 10px 15px;
   margin: 10px 5px;
}
header nav ul li a {
    color: white;
}
header nav ul li a:hover {
    font-weight:bolder;
    color:blue;
    font-size: 20px;
}
/* Start to Footer Styling */
footer {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 40px 0px;
    background-color:var(--header-footer-color);
}
footer h2 {
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    font-size: 25px;
    margin: 0;
}
footer div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 25px;
    width: 80%;
    line-height: 1.5;
    text-align: right;
}
footer a {
    color:white;
}
footer a:hover {
    font-size: 20px;
    font-weight: bolder;
    color: blue;
}
/* Hero Background Image */
.hero {
    height: 600px;
    background-image: url(..//images/SLC.jpeg);
    background-size: cover;
    background-position: 100%;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-end;
    background-attachment: fixed;
}
/* About Me Section */
#about {
background-color: white;
display: flex;
margin-bottom: 20px;
padding: 50px;
height: 500px;
font-family: serif,fantasy;
color: black;
width: max-content;
background-size: cover;
}
.bio-container {
    background-color: var(--primary-section-background);
    color: white;
    border-bottom-left-radius: 30px 30px;
    border-bottom-right-radius: 30px 30px;
    border-top-left-radius: 30px 30px;
    border-top-right-radius: 30px 30px;
}
.bio {
    justify-content: flex-start;
    flex-direction: column;
    display: table;
}

article {
    display: flex;
    justify-content: center;
}
/* Work Section */


.project-container {
    height: 600px;
    display: flow-root;
    justify-content: space-between;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 250px;
    width: 100%;
}
.project-container h2 {
    text-align: center;
}
#cinamac{
    background-image: url(../images/Cinamac.png);
    display: flex;
    margin: 0 25px;
    height: 550px;
    background-size: cover;
}
#run-buddy {
    background-image: url(../images/Runbuddy.png);
    display: flex;
    margin: 25px 25px;
    height: 170px;
    background-size: cover;
}
#horiseon{
    background-image: url(../images/Horiseon.png);
    display: flex;
    margin: 25px 25px;
    height: 170px;
    background-size: cover;
}
#hogwarts-library {
    background-image: url(../images/Hogwarts.jpeg);
    display: flex;
    margin: 25px 25px;
    height: 170px;
    background-size: cover;
}
.main-project {
    width: 50%;
    float: left;
}
.side-project {
    width: 50%;
    float: right;
}
.project-title {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}
/* MEDIA QUERY FOR TABLETS AND SMALLER */
@media screen and (max-width: 980px){
    body {
        padding: 30px 5px 5px 5px;
    }
    header {
        padding-bottom: 0;
        justify-content: center;
        position: relative;
        background-color: cornflowerblue;
    }
    header nav ul {
        margin-top: 20px;
        width: 100%;
        justify-content: center;
      }
    .hero {
        height: 200px;
        background-image: url(..//images/SLC.jpeg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: 100%;
      }     
    footer {
          background-color: cornflowerblue;
      }
    .bio-container{
      flex: 1 100%;
    }
  }

