/*Base styling*/

@import url('https://fonts.googleapis.com/css?family=Comfortaa');
*{
  margin: 0;
  padding: 0;
}

h1,h2,h3, p.bold {
  font-family: 'Comfortaa', cursive;
}

.bold {
  font-weight: 900;
}

:root {
  --primary-color: #476C9B;
  --secondary-color: rgb(197, 224, 241);
}

.shadow {
  -webkit-box-shadow: 7px 14px 24px -9px rgba(0,0,0,0.75);
  -moz-box-shadow: 7px 14px 24px -9px rgba(0,0,0,0.75);
  box-shadow: 7px 14px 24px -9px rgba(0,0,0,0.75);
}

body {
  margin: 0 10%;
  display: grid;
  grid-template-areas: 'header header header'
                       'aside main main';
  grid-gap: 20px;
  margin-bottom: 50px;
}

header {
  color: white;
  grid-area: header;
  height: 250px;
  background-color: var(--primary-color);
  
}

header h1 {
  font-size: 2.2em;
  margin-bottom: 10px;
}

header h3 {
  font-weight: 400;
  font-size: 1em;
  letter-spacing: 1px;
}

ul {
  list-style-position: inside;
}

header .content{
  border: 1px solid #fff;
  width: 40%;
  height: 60%;
  margin: 0 auto;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

/* Aside Styling */
aside {
  grid-area: aside;
  padding: 10px 5px 10px 5px;
  margin-left: 100px;
  background-color: var(--secondary-color);
}

aside img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);
  padding-bottom: 20px;
}

aside ul {
  list-style: none;
  padding-top: 10px;
  margin-bottom: 40px;
}

aside ul li {
  margin-bottom: 20px;
  padding-right: 5px;
}

aside h2 {
  padding-left: 5px;
}

aside i {
  margin-right: 5px;
  padding-left: 10px;
}

.mute {
  text-decoration: none;
  color: black;
}

aside hr {
  border: 0;
  background-color: black;
  height: 2px;
  margin: 20px 5px;
}

/* Main Styling */
main {
  grid-area: main;
  display: flex;
  flex-direction: column;
  margin-right: 100px;
}

main h2 {
  margin: 20px 0;
}


main hr {
  border: 0;
  height: 2px;
  background:  var(--secondary-color);
}

section {
  min-height: 200px;
}

.bio {
  line-height: 25px;
}

section h3 {
  margin-bottom: 5px;
}

.work .content,
.education .content {
  text-align: left;
  margin-left: auto;
  width: 320px;

}
section:first-child h2 {
  margin-top: 0;
}

.work .entry,
.education .entry {
  display: flex;
  flex-direction: row;
  margin-bottom: 30px;
}

.skills .content {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  font-size: 1.3em;
}

