/*
  1. Use a more-intuitive box-sizing model.
*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
}

/*
  2. Remove default margin
*/
* {
  margin: 0;
  padding: 0;
}

/*
  3. Allow percentage-based heights in the application
*/
html, body {
  height: 100%;
}

/*
  Typographic tweaks!
  4. Add accessible line-height
  5. Improve text rendering
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/*
  6. Improve media defaults
*/
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/*
  7. Remove built-in form typography styles
*/
input, button, textarea, select {
  font: inherit;
}

/*
  8. Avoid text overflows
*/
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/*
  9. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #212121;
}

.page-content {
  max-width: 1728px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media screen and (max-width: 1600px) {
  .page-content {
    max-width: 1384px;
  }
}

.line {
  margin: auto 0;
  background-color: #fff;
  width: 6rem;
  height: 0.3rem;
}

.navbar {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
  margin-bottom: 7.5rem;
}
.navbar__title a {
  text-decoration: none;
  color: #fff;
  font-size: 2.25rem;
  letter-spacing: 1px;
}
.navbar__icon svg {
  margin: auto 0;
  color: white;
  width: 2.8rem;
  cursor: pointer;
}

.page-top {
  height: 100%;
}

.line-wrapper {
  display: flex;
  gap: 20px;
  margin-bottom: 0.8rem;
}

.text-container {
  width: 50%;
}
@media only screen and (max-width: 600px) {
  .text-container {
    width: 100%;
  }
}

.profession {
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.name {
  color: white;
  font-size: 4.5rem;
  margin-bottom: 1.56rem;
}

.about-desc {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
}

.button-container {
  margin-top: 2.5rem;
  display: flex;
  gap: 2.5rem;
}
.button-container .button {
  padding: 0.8rem 1.8rem;
  border-radius: 100px;
}
.button-container .button .primary-button-link {
  text-decoration: none;
}

.down-arrow {
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.down-arrow-container {
  position: absolute;
  bottom: 0;
  margin-bottom: 20px;
  left: 50%;
}
.down-arrow-container svg {
  height: 40px;
  width: auto;
  color: white;
}

.about-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 180px;
}

.section__title {
  color: #FFF;
  font-size: 4rem;
  margin-bottom: 2.5rem;
}
.section__content {
  max-width: 75%;
}
.section__content-text {
  color: #FFF;
  font-size: 1.25rem;
  text-align: center;
}

.project__card {
  background-color: #FF0000;
}
.project__card__image {
  width: 50%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.project__card__title {
  color: #FFF;
  font-size: 2rem;
  margin-bottom: 1.25rem;
}
.project__card-about-wrapper {
  display: flex;
  flex-direction: column;
}