:root {
  --color-red:  #E94134;
  --color-blue: #4286F5;
  --color-green: #34A853;
  --color-yellow: #F9BB04;
}

@font-face {
  font-family: 'Calibre';
  font-style: normal;
  font-stretch: 100%;
  font-display: swap;
  src: url(calibre-medium.woff2) format('woff2');
}

body, button {
  font-family: "Calibre", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
  line-height: 1.1;
}

button {
  background: none;
  border: none;
  text-decoration: underline;
}

article {
  
}

a, button {
  text-decoration-thickness: 4px;
}

h1, article, button {
  font-size: clamp(1.625rem, 0.7411rem + 4.4196vi, 7.8125rem);
  color: #333;
}

h1 {
  display: inline;
  font-weight: 600;
}

article {
  padding: 0 clamp(1rem, 0.4286rem + 2.8571vi, 5rem);
}

em {
  font-style: normal;
  /* font-weight: 600; */
}

strong {
  font-weight: normal;
}

a {
  /* font-weight: 600; */
}

aside {
  width: 80%;
  max-width: 600px;
  padding: 1rem;
  border-radius: 1rem;
  border: none;

  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}

aside::backdrop {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}

.linkedin {
  color: var(--color-red);
}

.linkedin:focus {
  outline: 2px solid var(--color-red);
}

.websites {
  color: var(--color-green);
}

.websites:focus {
  outline: 2px solid var(--color-green);
}

.apps {
  color: var(--color-blue)
}

.apps:focus {
  outline: 2px solid var(--color-blue);
}

.flutter-belgium {
  color: var(--color-yellow);
}

.flutter-belgium:focus {
  outline: 2px solid var(--color-yellow);
}