@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400&family=Piazzolla:opsz,wght@8..30,500&display=swap');
* {
  margin: 0;
  box-sizing: border-box;
}
html,
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: 'IBM Plex Sans', sans-serif;
  color: #555;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  color: #456;
  transition: color 0.2s linear;
  text-decoration: none;
}
a:active,
a:hover {
  outline-width: 0;
  color: #123;
  text-decoration: none;
}
header {
  width: 100%;
  height: 152px;
  position: relative;
}
nav {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #9b9b9b;
  position: relative;
  display: inline-block;
}

nav button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  appearance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 1rem;
  width: 86px;
  font-size: 0.9rem;
  color: gray;
}

ul.dropdown-content {
  display: none;
  position: absolute;
  min-width: 120px;
  z-index: 1;
  list-style: none;
  left: 0;
  padding: 0;
}

.dropdown-content a {
  color: gray;
  padding: 0.3rem 1rem;
  text-decoration: none;
  display: block;
  transition: all 0.2s linear;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}
main {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 152px);
  justify-content: space-between;
  align-items: stretch;
  background-color: #f9fafe;
  border: none;
  background-image: linear-gradient(-1deg, #fff 0%, #e2e9ef 100%);
  padding-top: 72px;
}
section {
  padding: 2.25rem 1.5rem;
  min-width: 100%;
}
.introduction {
  text-align: center;
  margin: 0 auto;
}
h1 {
  font-weight: 500;
  font-family: 'Piazzolla', serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: rgb(28, 47, 57);
}
h2 {
  font-size: 1.1rem;
  color: #9b9b9b;
  font-weight: 400;
  text-align: center;
  color: rgb(65, 87, 98);
  margin-bottom: 2.5rem;
}
p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.75rem;
}
p a {
  color: #555;
}

.img-circle {
  border-radius: 100%;
  position: absolute;
  left: calc(50% - 96px);
  top: calc(100% - 96px);
  float: left;
  z-index: 1000;
  border: 2px rgb(182, 203, 214) solid;
}
#curriculum {
  text-align: center;
  margin-top: 1.5rem;
}
.cv-btn {
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
  margin: 0 auto;
  background: #eee;
  font-weight: 600;
  font-size: 0.75rem;
  transition: all;
  transition-duration: 0.2s;
}
.cv-btn:hover {
  background: #efefef;
  color: #111;
}
footer {
  font-size: 12px;
  color: #9b9b9b;
  text-align: center;
  height: 100px;
}
.social {
  margin: 0 auto;
  width: 100%;
  text-align: center;
  color: #bbb;
  font-size: 1.5rem;
}
.social ul {
  list-style: none;
  padding-left: 0;
}
.social ul li {
  display: inline-block;
  margin: 0 0.4rem;
}

@media (min-width: 767px) {
  header {
    height: 200px;
  }
  main {
    min-height: calc(100vh - 300px);
  }
  section {
    padding: 2.25rem 2rem;
  }
  nav {
    left: 12px;
  }
  .introduction {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 1rem;
  }
  p {
    text-align: left;
    font-size: 17px;
    line-height: 1.6;
  }
}
@media (min-width: 1200px) {
  header {
    height: 256px;
  }
  section {
    padding: 2.25rem 3rem;
  }
  main {
    padding-top: 100px;
    min-height: calc(100vh - 356px);
  }
  .introduction {
    max-width: 1064px;
  }
  .img-circle {
    width: 256px;
    height: 256px;
    left: calc(50% - 128px);
    top: calc(100% - 128px);
  }
}
@media (min-width: 1440px) {
  h1 {
    font-size: 42px;
  }
  h2 {
    font-size: 22px;
  }
  p {
    font-size: 18px;
    line-height: 30px;
  }
  footer {
    font-size: 14px;
  }
}
@media (max-height: 375px) {
  header {
    height: 100px;
  }
  h1 {
    margin: 0;
  }
  main {
    padding-top: 32px;
  }
  .img-circle {
    width: 128px;
    height: 128px;
    left: calc(50% - 64px);
    top: calc(100% - 64px);
  }
}
@media (prefers-color-scheme: dark) {
  body {
    background-color: #171717;
    color: #eee;
  }
  main {
    background-color: #111;
    border: none;
    background-image: linear-gradient(-1deg, #171717 0%, #111111 100%);
  }
  h1 {
    color: #fff;
  }
  h2 {
    color: #ddd;
  }
  .introduction {
    color: #ddd;
  }
  .introduction a {
    color: #fff;
  }
  .social a {
    color: #bbb;
  }
  a:active,
  a:hover {
    outline-width: 0;
    color: #fff;
    text-decoration: none;
  }
  footer,
  nav button {
    color: #aaa;
  }
}
@page {
  size: A4 portrait;
}
@media print {
  .main {
    background-image: none;
    background-color: #fff !important;
  }
  .social,
  nav {
    display: none !important;
  }
}
