@charset "utf-8";
@import "Styles.css";

/*
Author: Bryan Sempertegui
Date: Aug 6th, 2019

Filename: Resume_Styles.css.html
*/


/*General Styles*/

h1, h2, section p, div li {
    padding: 7px;
    margin: 0 10% 0 10%;
    list-style: circle;
    color: lightgray;
}
h1{
    text-align: center;
    text-decoration: underline;
    color: rgb(70, 80, 82);
}

h2.title{
    font-weight: bold;
    text-decoration: underline;
    text-align: center;
}

h2.date{
    font-style: italic;
}

section{
    box-shadow: inset 0 0 20px black;
    border-radius: 20px;

}

section#Skills li,
section#Education {

    text-align: center;
    list-style: none;
}

section#Skills h1,
section#Education h1{
    margin-bottom: 30px;
}


/*Grid*/

div#grid{
    display: grid;
    grid-template-columns:1fr 1fr ;
    grid-template-areas:
    "summ summ"
    "skil expe"
    "educ expe"

;
}



/*Grid area names*/
section#Summary {grid-area: summ;}
section#Experience{grid-area: expe;}
section#Skills{ grid-area: skil;}
section#Education{grid-area: educ;}



