@import url('https://fonts.googleapis.com/css2?family=Catamaran:wght@100;200;300;500&family=Roboto:wght@100;300;400;500;700&display=swap');

.App {
  text-align: center;
  color: #fff;
}

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  background-color: #1b4586 !important;
}

h1, h2, h3 {
  font-family: 'Catamaran', sans-serif;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

/* Introduction */
.introduction h1 {
  font-size: 4rem;
  text-transform: uppercase;
  font-weight: 300;
}

.introduction h2 {
  font-size: 2.5rem;
}

/* Contact */
.contact .socials a img {
  display: inline-block;
  width: 50px;
}

.contact .socials .link-medium,
.contact .socials .link-li {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50px;
  height: 50px;
  width: 50px;
  display: inline-block;
  text-indent: -9999px;
}

.contact .socials .link-li {
  background-image: url('images/linkedin.png');
}

.contact .socials .link-medium {
  background-image: url('images/medium.png');
  background-position: center top 5px;
}

.contact .socials .link-li:hover {
  background-image: url('images/linkedin-h.png');
}

.contact .socials .link-medium:hover {
  background-image: url('images/medium-h.png');
}
