*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  font-family: "Lexend Exa", sans-serif;
  color: white;
}

/* Header */
header {
  background-color: rgba(0, 0, 0, 0.902);
  opacity: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

header a {
  text-decoration: none;
  color: white;
}

/* Navigation */
.navbar ul {
  display: flex;
  list-style: none;
  margin: 30px 100px;
  padding: 0;
  gap: 2rem;
  font-size: 22px;
}

.navbar a:hover {
  text-decoration: underline;
}

.logo {
  margin-left: 80px;
  height: 35px;
}

/* Home */
.home {
  background-color: black;
}

#particleCanvas {
  position: absolute;
  z-index: 0;
}

.hero {
  position: relative;
  display: flex;
  z-index: 1;
}

.portrait {
  max-width: 350px;
  margin: 150px;
  border-radius: 100%;
}

.headlines {
  margin-top: 450px;
}

.headlines h1,
.headlines h2,
.headlines h3 {
  line-height: 2;
  font-size: 24px;
  margin-right: 150px;
}

section {
  min-height: 100vh;
}

/*About Me*/
#aboutme {
  padding: 70px;
  background-color: rgb(23, 23, 23);
  display: flex;
  flex-direction: column;
  align-items: center;
}

#aboutme h2 {
  padding-top: 35px;
  font-size: 40px;
}

#aboutme p {
  padding: 70px 400px;
  font-size: 20px;
}

.skillcard {
  display: flex;
  justify-content: space-between;
  gap: 70px;
  padding-top: 50px;
}

.skillcard > div {
  flex: 1;
  background-color: black;
  border-radius: 8px;
  padding: 40px;
  color: white;
  font-size: 20px;
}

.skillcard > div h3 {
  text-align: center;
  margin: 30px;
}

.skillcard ul li {
  line-height: 1.8;
  margin-bottom: 20px;
}

.skillcard > div i {
  display: block;
  font-size: 40px;
  margin: 0 auto 15px;
  text-align: center;
}

/*Experience*/
#experience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1rem;
  background-color: black;
  margin: 100px auto -100px;
}

body, #experience {
  background-color: black;
}

#experience .column {
  display: flex;
  flex-direction: column;
}

.section-title {
  font-family: helvetica;
  color: white;
  margin: 50px 0 20px;
  text-align: left;
}

.col .contents {
  padding: 30px;
  border-left: 2px solid #bababa;
}

.col .contents .box {
  position: relative;
  padding: 20px;
  border: 1px solid #eaeaea;
  background-color: #ffffff;
  margin-bottom: 20px;
}

.col .contents .box:hover {
  box-shadow: 0px 3px 12px 0px #ccc;
  border: 5px solid transparent;
}

.col .contents .box::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  right: calc(100% + 22px);
  top: 0;
  background-color: black;
  border: 2px solid white;
}

.box h4 {
  position: relative;
  color: #444;
}

.box h3 {
  font-size: 19px;
  padding: 10px 0px 6px;
  font-family: helvetica;
  color: #444;
}

.box p {
  line-height: 1.2;
  color: #666;
  font-size: 17px;
}

/*Projects*/
#projects {
  background-color: black;
}

.page-header {
  padding: 2rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  margin-bottom: 50px;
}

.page-header h2 {
  margin-bottom: 50px;
  font-size: 30px;
  color: white;
}

.filters {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: #fff;
  padding: 0.5rem 0.9rem;
  border-radius: 100px;
  cursor: pointer;
  font-size: 20px;
}

.filter-btn:hover {
  transform: translateY(-1px);
}

.filter-btn.active {
  background: #111;
  color: #fff;
  border-color: #fff;
}

.catalog-grid {
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 300px));
  gap: 3rem;
  max-width: 1350px;
  margin: 0 auto;
  padding: 1rem;
}

.project-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.project-card img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: fill;
     object-fit: fill;
  display: block;
  background: white;
}

.project-card h3 {
  font-size: 25px;
  margin: 20px 0 15px;
}

.project-card p {
  font-size: 16px;
  line-height: 2;
}

/*contact*/
#contact {
  position: relative;
  overflow: hidden;
}

#particleCanvasContact {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.contact-container {
  position: relative;
  z-index: 1;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.contact-left {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}

.contact-left-title h2 {
  font-weight: 600;
  color: white;
  font-size: 40px;
  margin-bottom: 5px;
}

.contact-left-title hr {
  border: none;
  width: 120px;
  height: 5px;
  background-color: white;
  border-radius: 10px;
  margin-bottom: 20px;
}

.contact-inputs {
  width: 600px;
  height: 50px;
  border: none;
  outline: none;
  padding-left: 25px;
  font-weight: 500;
  color: black;
  border-radius: 50px;
}

.contact-left textarea {
  height: 140px;
  padding-top: 15px;
  border-radius: 20px;
}

.contact-inputs:focus {
  transform: translateY(-1px);
}

.contact-inputs::-moz-placeholder {
  color: #a9a9a9;
}

.contact-inputs::placeholder {
  color: #a9a9a9;
}

.contact-left button {
  display: flex;
  align-items: center;
  padding: 15px 30px;
  font-size: 16px;
  color: black;
  gap: 10px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
}

.contact-img {
  height: 500px;
  margin-right: 200px;
  border-radius: 100%;
}

@media (max-width: 800px) {
  header > nav {
    display: none;
  }
  .show {
    display: flex;
    position: absolute;
    top: 50px;
    width: 100%;
    background-color: black;
    padding: 15px;
  }
  #bars {
    padding-right: 10px;
    font-size: 25px;
    color: #141212;
  }
  /* Navigation */
  .navbar ul {
    display: flex;
    flex-direction: column;
    font-size: 18px;
  }
  .navbar li {
    padding: 7px;
    width: 100%;
  }
  .headlines {
    margin: -180px 0 50px;
    font-size: 20px;
    text-align: center;
  }
  img {
    max-width: 100%;
    width: 100%;
    display: block;
  }
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .catalog-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 100px));
    justify-content: center;
  }
  #aboutme p {
    padding: 70px 100px;
  }
  .skillcard {
    flex-direction: column;
    gap: 50px;
    padding-top: 50px;
  }
  .skillcard > div {
    flex: 1;
    background-color: black;
    border-radius: 8px;
    padding: 40px;
    color: white;
    font-size: 18px;
  }
  .contact-inputs {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
  }
  .contact-left {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .contact-img {
    display: none;
  }
  .go-to-top-btn {
    position: fixed;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    bottom: 70px;
    right: 50px;
    text-decoration: none;
    text-align: center;
    line-height: 50px;
    font-size: 22px;
  }
}
@media (min-width: 801px) {
  #bars {
    display: none;
  }
  .go-to-top-btn {
    position: fixed;
    z-index: 1;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    bottom: 70px;
    right: 20px;
    text-decoration: none;
    text-align: center;
    line-height: 50px;
    font-size: 22px;
  }
}/*# sourceMappingURL=style.css.map */