/**
 ** Alle rechten voorbehouden © Jago Pauwels
 */

@import url('https://fonts.googleapis.com/css2?family=Alice&family=Raleway:wght@400..600&display=swap');
/**
 ** Common styles
 */

* {
  margin: 0;
  padding: 0;
  border: none;
  font-style: normal;
}

body {
  background-color: white;
  height: 100%;
	font-family: 'Raleway', sans-serif;
  -webkit-font-smoothing: antialiased !important;
  font-weight: 400;
  color: #555;
  line-height: 1.4;
}

/**
 ** Links
 */

a {
  color: #6D3AF0;
}

a:hover {
  color: #0417D8;
}

a.noAStyle, a.noAStyle:hover {
  text-decoration: none;
  color: #6D3AF0;
}

/**
 ** Header
  */

header {
  min-width: 20rem;
  max-width: 60rem;
  text-align: left;
  margin: 1rem auto 4vw auto;
  padding: 0 1.5rem;
}

header h1 {
  font-size: 14vw;
  font-family: 'Alice', serif;
  -webkit-font-smoothing: antialiased !important;
  font-weight: 400;
  background-image: linear-gradient(to right, #B451FF, #0016D8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

header .subtitle {
  color: #777;
  font-size: 3vw;
  font-family: 'Raleway', serif;
  -webkit-font-smoothing: antialiased !important;
  font-weight: 400;
}

@media screen and (min-width: 1030px) {
  header {
    margin-bottom: 2.5rem;
  }

  header h1 {
     font-size: 9rem;
  }

  header .subtitle {
    font-size: 1.92rem;
  }
}



/**
 ** Content
  */

#content {
  margin-top: 1em;
  margin-bottom: 3em;
  background-color: #F3F7FC;
  border-top: 1px solid #E6EAEE;
  border-bottom: 1px solid #E6EAEE;
}

/**
 ** Article
  */

article {
  font-size: 1rem;
  min-width: 20rem;
  max-width: 60rem;
  text-align: left;
  margin: 1rem auto 3rem auto;
  padding: 0 1.5rem;
}

article section h2 {
  font-size: 1.4em;
  margin-top: 1.5em;
  margin-bottom: 0.1em;
  clear: left;
  font-weight: 600;
}

article section h2:first-child {
  margin-top: 1em;
}

article section dl dt {
  clear: left;
  font-weight: 600;
  width: 90px;
  float: left;
  margin-top: 0em;
  font-size: 1em;
}

article section dl dd {
  margin: 0 4em 0 9em;
}

article section p {
  margin-bottom: 1em;
}

article section p .omschrijving {
  font-weight: 600;
}

article section ul.tags li{
  display: inline-block;
  margin: 0 0.5rem 0.5rem 0;
  padding: 0.2rem 0.8rem;
  background-color: #D4D7FF;
  background-image: linear-gradient(to left, #D4D7FF, #B7BDFF);
  color: black;
  border-radius: 0.5rem;
}

article section ul.tags{
  margin-bottom: -0.5rem;
}

/**
 ** Links
  */

.links{
  min-width: 20rem;
  max-width: 60rem;
  text-align: right;
  margin: 0.8rem auto 3rem auto;
  padding: 0 1.5rem;
}

.links ul li{
  display: inline-block;
  margin-left: 0.5em;
}

.links ul li a{
  display: inline-block;
  background-repeat:no-repeat;
  background-size: contain;
  width: 2rem;
  height: 1.8rem;
  overflow: hidden;
  text-indent:99999em;
}

.links ul li a#linkedin{
  background-image: url(../images/LinkedIn.png);
}

.links ul li a#linkedin:hover{
  background-image: url(../images/LinkedIn-hover.png);
}

.links ul li a#github{
  background-image: url(../images/GitHub.png);
}

.links ul li a#github:hover{
  background-image: url(../images/GitHub-hover.png);
}
}