* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

:root {
    --dark: #274c77;
    --light: #a3cef1;
    --gry: #8b8c89;
}

body {
    background-color: #e7ecef;
}

/* Title Name */
header {
    padding: 10px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    background-color: #8b8c89;
    color: var(--light);
}

.intro {
    background-color: var(--dark);
}

/* nav bar block */
header h1 {
    display: inline-block;
    font-size: 48px;
}

header h1 .intro {
    color:var(--light);
}

/*-- style to create vertical line 1-3 --*/ 
.vl {
    border-left: 6px solid var(--dark);
    height: 175px;
    position: absolute;
    left: 20%;
    margin-left: -3px;
    top: 2;
  }
  
  .vl2 {
    border-left: 6px solid var(--dark);
    height: 805px;
    position: absolute;
    left: 20%;
    margin-left: -3px;
    top: 46rem;
  }
  
  .vl3 {
    border-left: 6px solid var(--dark);
    height: 95px;
    position: absolute;
    left: 20%;
    margin-left: -3px;
    top: 100rem; 
}

/* Navbar Section */
nav {
    padding-top: 20px;
    margin-right: 60px;
    float:right;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 20px;
}

nav ul{
    list-style-type: none;
}

nav ul li {
    display: inline-block;
    margin-left: 30px;
}

nav a {
    color: var(--light);
    text-underline-offset: 5px; 
}

.banner {
    height: 400px;
    width: 100%;
    margin-bottom: 25px;
    background-image: url(../assets/images/Large\ Backdrop.jpg);
    background-size: cover;
    background-position: center;
}

#avatar {
    margin-top: 50px;
    margin-left: 1cm;
    border-radius: 50%;
}

/* H1 margin placements */
.about {
    position: absolute; 
    top: 520px; 
    right:right; 
    bottom:bottom; 
    left:205px; 
}

.work {
    position: absolute; 
    top: 730px; 
    right:right; 
    bottom:bottom; 
    left:280px; 
}

.contact {
    position: absolute; 
    top: top; 
    right:right; 
    bottom:-715px; 
    left:170px; 
}

/* subtitle */
figure h2 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 30px;
    color: var(--dark);
    text-align: right;
}

.sub {
    background-color: var(--light);
    margin: 60px;
}

section h1 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 40px;
    color: var(--dark);
}

/* about me bio */
.bio {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 18px;
    color: var(--dark);
    text-align: center;
}

/* cards */
h3 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: var(--gry);
}

h4 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: var(--gry);  
}

/* Images placements */
#city, #led, #comp, #mern, #run {
    border: 3px solid var(--light);
    opacity: 0.5;
}

#city {
  
    margin-top:200px;
    margin-bottom: 25px;
    margin-right:250px;
    margin-left: 0px;
}
#city:hover {
    opacity: 1.0;
}
   
#led {
    margin-top:620px;
    margin-bottom: -300px;
    margin-right:-500px;
    margin-left: 0px;
     
}
#led:hover {
    opacity: 1.0;
}
   
#comp {
    margin-top: 587px;
    margin-bottom: -300px;
    margin-right:-1020px;
    margin-left: 50px;
}
#comp:hover {
    opacity: 1.0;
}
   
#mern {
    margin-top: 750px;
    margin-bottom:-210px;
    margin-right: -500px;
    margin-left: -300px;
}
#mern:hover {
    opacity: 1.0;
}
     
#run {
     margin-top: 750px;
     margin-bottom: -470px;
     margin-right: -1020px ;
     margin-left: 50px;
}
#run:hover {
    opacity: 1.0;
}
/* Redirect pages */


/* Footers text styles */
footer h1 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 40px;
    color: var(--dark);
}

footer ul{
    list-style-type: none;
    margin-top: 28cm;
    text-align: center;
    margin-right: 10cm;
}

footer ul li{
    display: inline-block;
}

footer a {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 20px;
    color: var(--gry);
    text-decoration: underline var(--dark);
    text-underline-offset: 5px;
    margin-left: 20px;
}




/* media queries: Desktop, Tablet, Mobile */
@media screen and (max-width: 1074px) {
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 500px){
}