@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  display: flex;
  flex-direction: column;

  margin: auto;
  min-height: 100vh;

  background: #ffffff;

  /* While Poppins is loading, display content in Verdana with these styles */
  font-family: "Poppins", Verdana;
  /* letter-spacing: -0.1px;
  word-spacing: -0.65px;
  line-height: 24px; */
}

/* Once our custom fonts have loaded, switch to Poppins and reset the styles */
/* body.fonts-loaded {
  letter-spacing: normal;
  word-spacing: normal;
  line-height: normal;
} */

body.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

/* Header ( logo + navigation burger ) */

nav {
  display: flex;
  justify-content: space-between;
  min-height: 12vh;
  padding-left: 3vh;
  padding-right: 3vh;
  align-items: center;
  background-color: #ffffff;
}

.nav-links {
  display: flex;
  justify-content: space-around;

  box-sizing: content-box;
}

.nav-links li {
  list-style: none;
}

/**
 * Added by Mircea
 */
.nav-links li + li {
  margin-left: 8px;
}

.nav-links a {
  color: #333333;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
}

a {
  color: #111111;
  text-decoration: none;
}

a:hover {
  color: #666666;
}

.burger {
  display: none;
}

.burger div {
  width: 25px;
  height: 2px;
  background-color: #333333;
  margin: 5px;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  nav {
    padding-left: 3vh;
    padding-right: 3vh;
  }

  .nav-links {
    position: fixed;
    right: 0px;
    height: 60%;
    margin: auto;
    padding-bottom: 100%;
    top: 80px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
  }

  .nav-links li {
    opacity: 0;
  }

  .burger {
    display: block;
    cursor: pointer;
  }
}

/* Header navigation state */
.nav-active {
  transform: translateX(0%);
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

.toggle .line1 {
  transform: rotate(-45deg) translate(-4px, 6px);
}

.toggle .line2 {
  opacity: 0;
}

.toggle .line3 {
  transform: rotate(45deg) translate(-4px, -6px);
}

/* Bottom of page ( footer + project navigation ) */

footer {
  text-align: center;
  padding-top: 6vh;
  padding-bottom: 4vh;
  background-color: #ffffff;
  margin-top: auto;
}

.bottom-nav {
  opacity: 1;
  transition: opacity 1s;
  padding-bottom: 2em;
}

.bottom-nav:hover {
  opacity: 0.5;
  transition: opacity 1s;
}

.icon-sm {
  width: 18px;
  margin: 6px;
}

.icon-sm:hover {
  filter: invert(26%) sepia(93%) saturate(557%) hue-rotate(120deg)
    brightness(90%) contrast(101%);
}

/* About me image styles */

.about-img-container {
  width: 80%;
  padding: 4vh 0;
  margin: 0 auto;
}

.about-img {
  max-width: 100%;
  height: auto;
  border-radius: 50%;

  /* The background properties are for the inline LQIP placeholder */
  background-repeat: no-repeat;
  background-size: cover;
}

/* Layout */

.container {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.container-left {
  text-align: left;
  padding-top: 1em;
  padding-bottom: 1em;
}

.container-intro {
  text-align: left;
  padding-top: 2em;
}

.container-color {
  width: 100%;
  background-color: #f5f6f7;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding-bottom: 1.6em;
}

.container-hero {
  margin: none;
}

.hero {
  max-width: 100%;
  height: auto;

  /* The background properties are for the inline LQIP placeholder */
  background-repeat: no-repeat;
  background-size: cover;
}

.section {
  width: 60%;
  margin: auto;
  padding-top: 2vh;
  padding-bottom: 2vh;
}

.section-port {
  width: 80%;
  margin: auto;
}

.section-about {
  width: 60%;
  margin: auto;
}

.flex-container {
  display: flex;
}

.flex-container.margin-top {
  margin-top: 4vh;
}

.flex-container.margin-top .port-img {
  margin: 0;
}

.flex-container-border {
  display: flex;
  border: 1px solid;
  border-color: #ebebeb;
  border-radius: 4px;
  background-color: #ffffff;
  box-shadow: 2px 2px 10px #f1f1f1;
}

.flex-item-left {
  padding: 10px;
  flex: 50%;
  text-align: left;
}

.flex-item-right {
  padding: 10px;
  flex: 50%;
}

.flex-item-port {
  padding: 10px;
  flex: 50%;
}

.flex-text-right {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  flex: 100%;
  text-align: left;
  margin: auto;
}

.flex-text-center {
  padding: 20px;
  flex: 50%;
  text-align: center;
}

.container-full {
  padding: 4vh 0;
}

.port-img {
  /* margin: 4vh 0; */

  max-width: 100%;
  height: auto;

  /* The background properties are for the inline LQIP placeholder */
  background-repeat: no-repeat;
  background-size: cover;
}

.pers-img {
  max-width: 100%;
  height: auto;
}

.app-img {
  max-width: 25%;
  height: auto;
}

@media screen and (max-width: 1024px) {
  .section-about {
    width: 90%;
  }
}

@media screen and (max-width: 768px) {
  .flex-container {
    flex-direction: column;
  }

  .container {
    width: 90%;
  }

  .section {
    width: 100%;
  }

  .section-port {
    width: 100%;
  }

  .section-about {
    width: 90%;
    padding-bottom: 8vh;
  }

  .flex-text-right {
    text-align: center;
  }
}

/* Typography */

h1 {
  font-size: 36px;
  font-weight: 600;
  color: #111111;
  line-height: 44px;
  padding: 16px 0;
}

@media (min-width: 320px) and (max-width: 480px) {
  h1 {
    font-size: 30px;
    line-height: 36px;
  }
}

h2 {
  font-size: 30px;
  font-weight: 600;
  color: #111111;
  line-height: 40px;
}

@media (min-width: 320px) and (max-width: 480px) {
  h2 {
    font-size: 24px;
    line-height: 24px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 600;
  color: #111111;
  line-height: 40px;
}

@media (min-width: 320px) and (max-width: 480px) {
  h3 {
    font-size: 21px;
    line-height: 24px;
  }
}

.lead {
  font-size: 18px;
  color: #444444;
  font-weight: 400;
  line-height: 1.5em;
}

.lead-strong {
  font-size: 18px;
  color: #222222;
  font-weight: 500;
  line-height: 1.5em;
}

.base {
  font-size: 16px;
  font-weight: 400;
  color: #444444;
}

.base-strong {
  font-size: 16px;
  font-weight: 500;
  color: #222222;
}

.small {
  font-size: 14px;
  color: #333333;
  font-weight: 400;
  line-height: 1.3em;
}

.small-strong {
  font-size: 14px;
  color: #333333;
  font-weight: 700;
  line-height: 1em;
}

.extra-small-italic {
  font-style: italic;
  font-size: 12px;
  color: #999999;
  font-weight: 300;
  line-height: 1.2em;

  text-align: center;
  padding: 0 24px;
}

ul{
  margin-left: 2rem;
  padding-left: 1rem;
  list-style-type: disc;
}

li{
  font-size: 16px;
  color: #444444;
}




.link {
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 4px;
  letter-spacing: 0.8px;
  color: #333333;
}

.link:hover {
  border-bottom: 2px solid;
  color: #00af85;
}

b {
  font-family: "Poppins";
  font-weight: 600;
}
