* {
  --font1: Source Sans Pro;
  --font2: Quicksand;
  --lightgreen:#99ec99;
  --green:#257719;
  --darkgreen:#143b1a;
  margin: 0;
  box-sizing: border-box;
  padding: 0;
}

ol, ul, menu {
  list-style: none;
}

:root {
  font-family: var(--font1), sans-serif;
  background-color: rgb(229, 229, 229);
}

/* Pasek nawigacyjny */
nav {
  position: sticky;
  top: 0px;
  height: 80px;
  background: rgb(255, 255, 255);
  display: flex;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  box-shadow: 0px 15px 25px -15px rgb(34, 42, 129);
  font-family: var(--font2);
}

#leftside {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  width: calc(100% - 50px);
  padding: 5px;
}

#leftside img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  width: 100%;
}

#rightside {
  display: flex;
}

.hamburger {
  position: absolute;
  cursor: pointer;
  right: 5%;
  top: 50%;
  transform: translate(-5%, -50%);
  z-index: 2;
}

.line {
  width: 30px;
  height: 3px;
  background: black;
  margin: 5px;
}

.nav-links {
  position: fixed;
  background: rgb(255, 255, 255);
  height: 100vh;
  width: 100%;
  flex-direction: column;
  clip-path: circle(100px at 90% -10%);
  -webkit-clip-path: circle(10px at 90% -10%);
  transition: all 1.5s cubic-bezier(0.75, 0, 0.25, 1);
  pointer-events: none;
  top: 0;
}

.nav-links.open {
  clip-path: circle(5000px at 90% -10%);
  -webkit-clip-path: circle(5000px at 90% -10%);
  pointer-events: all;
}

.nav-links li {
  height: 25%;
  opacity: 0;
  text-align: center;
  line-height: 25vh;
}

.nav-links li a {
  font-size: 8vw;
  color: black;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links li:nth-child(1) {
  transition: all 0.5s ease 0.2s;
}

.nav-links li:nth-child(2) {
  transition: all 0.5s ease 0.4s;
}

.nav-links li:nth-child(3) {
  transition: all 0.5s ease 0.5s;
}

.nav-links li:nth-child(4) {
  transition: all 0.5s ease 0.6s;
}

li.fade {
  opacity: 1;
}

/* About me */
main {
  margin: 10vw;
  margin-bottom: 100px;
}

div.about-ceo h1 {
  font-weight: 800;
  font-size: 38px;
  margin-top: 40px;
}

h1::after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  left: 0;
  background: linear-gradient(90deg, rgb(229, 19, 255) 0%, rgb(99, 69, 252) 30%, rgba(229, 19, 255, 0) 70%);
}

span {
  display: flex;
  margin: 30px 0;
  font-weight: 300;
  font-size: 20px;
}

img {
  display: flex;
  width: 80vw;
}

div.ceo img {
  border-radius: 65% 35% 66% 34%/41% 41% 59% 59%;
}

div.ceo-reverse img {
  border-radius: 42% 58% 59% 41%/66% 41% 59% 34%;
}

div.ceo:first-child img {
  border-radius: 39% 61% 67% 33%/37% 59% 41% 63%;
}

div.ceo-reverse.unique img {
  border-radius: 25% 75% 32% 68%/37% 42% 58% 63%;
}

footer {
  background: radial-gradient(circle, rgba(229, 134, 255, 0.711) 40%, rgb(151, 0, 252) 100%);
  text-align: center;
  font-weight: 600;
}

footer a {
  color: rgb(98, 14, 252);
  text-decoration: none;
}

footer a:hover {
  color: rgb(204, 14, 252);
}

@media (min-width: 600px) {
  nav {
    height: 80px;
    background: rgb(255, 255, 255);
    display: flex;
    margin: auto;
  }
  main {
    width: 80vw;
    max-width: 650px;
    margin: auto;
    margin-bottom: 100px;
  }
  #leftside {
    display: flex;
    width: 200px;
    padding: 10px;
  }
  #leftside a {
    width: 100%;
  }
  #leftside a img {
    -o-object-fit: contain;
       object-fit: contain;
    height: 100%;
    max-width: 100%;
    margin-left: 10px;
  }
  #rightside {
    display: none;
  }
  .nav-links {
    position: relative;
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    list-style: none;
    background-color: transparent;
    -webkit-clip-path: none;
    height: 100%;
    width: 50%;
    min-width: 400px;
    margin: 0 0 0 auto;
    pointer-events: auto;
  }
  .nav-links li {
    height: 100%;
    line-height: 100%;
    opacity: 1;
  }
  .nav-links li a {
    color: black;
    line-height: 80px;
    padding: 10px;
    text-decoration: none;
    font-size: calc(12px + 1vw);
  }
  .nav-links li:hover a {
    color: rgb(115, 4, 200);
    font-size: 40px;
  }
  .nav-links li:nth-child(1) a {
    transition: all 0.3s ease-in-out 0s;
  }
  .nav-links li:nth-child(2) a {
    transition: all 0.3s ease-in-out 0s;
  }
  .nav-links li:nth-child(3) a {
    transition: all 0.3s ease-in-out 0s;
  }
  .nav-links li:nth-child(4) a {
    transition: all 0.3s ease-in-out 0s;
  }
  img {
    width: 100%;
  }
  div.about-ceo h1 {
    display: block;
    font-weight: 800;
    font-size: 38px;
    margin-top: 40px;
  }
  div.ceo-reverse:last-child {
    margin-bottom: 50px;
  }
  span {
    display: block;
    margin: 30px 0;
  }
}
@media (min-width: 1200px) {
  main {
    max-width: 1200px;
  }
  div.ceo {
    display: flex;
    justify-content: space-around;
    margin: 50px 0;
  }
  div.ceo-reverse {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
  }
  div.ceo-reverse:last-child {
    margin-bottom: 50px;
  }
  div.about-ceo {
    display: flex;
    flex-direction: column;
  }
  div.about-ceo h1 {
    font-weight: 800;
    font-size: 30px;
    line-height: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  h1::after {
    content: "";
    display: flex;
    width: 100%;
    height: 5px;
    left: 0;
    background: linear-gradient(90deg, rgba(229, 19, 255, 0) 30%, rgb(99, 69, 252) 70%, rgb(229, 19, 255) 100%);
  }
  div.about-ceo span:last-child {
    font-weight: 100;
    display: flex;
  }
  span {
    display: flex;
    align-items: center;
    width: 500px;
    font-size: 23px;
  }
  img {
    width: 500px;
  }
  div.ceo img {
    padding-left: 50px;
  }
  div.ceo-reverse img {
    padding-right: 50px;
  }
}/*# sourceMappingURL=style-aboutme.css.map */