@font-face {
  font-family: Gallient;
  src: url(fonts/GallientRegular.ttf);
}
html {
  font-size: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scrollbar-color: #CCBFBB #ffffff;
  scrollbar-width: thin;
}
html ::-webkit-scrollbar {
  width: 8px;
}
html ::-webkit-scrollbar-track {
  background: #ffffff;
}
html ::-webkit-scrollbar-thumb {
  background: #CCBFBB;
}
html ::-webkit-scrollbar-thumb:hover {
  background: #CCBFBB;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  background-color: #ffffff;
  color: #151138;
}

b {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

a,
a:visited,
a:active {
  text-decoration: underline;
  color: #151138;
}

a:hover {
  text-decoration: none;
  color: #151138;
}

p {
  margin: 0;
  padding: 0;
}

h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 26px;
  text-align: center;
  margin: 0;
}

nav {
  background-color: #FAF5F0;
  top: 0;
  width: auto;
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
  padding: 24px;
}
nav img {
  width: 160px;
}

.nav__links {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.nav__links__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  transition: transform 100ms ease-in-out;
}
.nav__links__link:hover {
  transform: rotate(15deg);
}
.nav__links__link img {
  width: 40px;
}

.top {
  position: fixed;
  bottom: 56px;
  right: 56px;
  z-index: 6;
  cursor: pointer;
  width: 40px;
  transition: transform 250ms ease-in-out;
}
.top:hover {
  transform: translatey(-8px);
}

.error {
  background-color: #FAF5F0;
  width: 100%;
  height: calc(100vh - 200.43px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}
.error__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 120px;
}
.error__container__text {
  display: flex;
  flex-direction: column;
}
.error__container__text h1 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}
.error__container__image {
  height: auto;
  margin: 0;
  padding: 0;
}
.error__container__image img {
  width: 600px;
}

.pwprotected {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #FAF5F0;
  height: calc(100vh - 200.43px);
}
.pwprotected p {
  text-align: center;
}
.pwprotected h1 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
}
.pwprotected__inputform {
  margin: 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  height: 100px;
}
.pwprotected__inputform__errormessage {
  display: none;
  color: red;
  font-size: 16px;
  width: 250px;
}
.pwprotected input {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
}
.pwprotected input[type=password] {
  padding: 16px 0 12px 8px;
  width: 250px;
  border: 1.5px solid #9E9AA6;
  border-radius: 4px;
  background-color: #ffffff;
  color: #151138;
}
.pwprotected input::-moz-placeholder {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  color: #9E9AA6;
}
.pwprotected input::placeholder {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  color: #9E9AA6;
}
.pwprotected button {
  background-color: #421ced;
  color: #FAF5F0;
  text-decoration: none;
  border: none;
  width: 250px;
  border-radius: 4px;
  padding: 12px 0 12px 0;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  transition: background-color 0.15s ease;
}
.pwprotected button:hover {
  background-color: #151138;
}

.projectpage {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.projectpage img {
  width: 100%;
}
.projectpage__content {
  width: 100%;
  max-width: 1200px;
  padding: 120px 24px 120px 24px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.projectpage__content__noroff {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.projectpage__content__noroff div {
  display: block;
  background-color: #ffffff;
  height: 120px;
  width: 100%;
}
.projectpage p {
  margin-bottom: 120px;
}

.intro {
  background-color: #FAF5F0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.intro__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 120px;
}
.intro__container__text h1 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  margin: auto;
  text-align: left;
}
.intro__container__text p {
  margin-top: 0;
  font-size: 24px;
}
.intro__container__image {
  height: auto;
  margin: 0;
  padding: 0;
}
.intro__container__image img {
  width: 600px;
  display: flex;
  align-items: flex-end;
}
.intro__pagecontainer {
  width: 100%;
  max-width: 1200px;
  padding: 120px 24px 120px 24px;
}
.intro__pagecontainer__text {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 640px;
}
.intro__pagecontainer__text__heading {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 16px;
}
.intro__pagecontainer__text__heading p {
  font-size: 16px;
  opacity: 75%;
}
.intro__pagecontainer__text__heading h1 {
  margin: 0;
  margin-bottom: 8px;
  padding: 0;
  font-size: 26px;
  font-weight: 500;
}

#popModal {
  display: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  background-color: #FAF5F0;
  width: 100%;
  height: 557px;
  position: absolute;
  z-index: 4;
  align-items: center;
  justify-content: center;
}

.aboutpopup__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.aboutpopup__container p {
  width: 640px;
}

#popModal.show {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.portfolio {
  position: relative;
  background-color: #ffffff;
  z-index: 2;
  padding-top: 200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.portfolio__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 56px;
  gap: 8px;
}
.portfolio__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 200px;
}
.portfolio__content__projectcontainer {
  width: 100%;
  max-width: 1800px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  padding: 0 40px;
}
.portfolio__content__projectcontainer__row {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
.portfolio__content__projectcontainer__row p {
  font-size: 16px;
  margin-top: 4px;
}
.portfolio__content__projectcontainer__row a {
  text-decoration: none;
}
.portfolio__content__projectcontainer__row a:hover img {
  opacity: 90%;
}
.portfolio__content__projectcontainer__row a div {
  display: flex;
  flex-direction: row;
}
.portfolio__content__projectcontainer__row__opacity {
  opacity: 75%;
}
.portfolio__content__projectcontainer__row img {
  width: 100%;
}
.portfolio__content__illustrationcontainer {
  width: 100%;
  max-width: 1800px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  padding: 0 40px;
}
.portfolio__content__illustrationcontainer__column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.portfolio__content__illustrationcontainer__column__txt {
  display: flex;
  flex-direction: row;
}
.portfolio__content__illustrationcontainer__column p {
  font-size: 16px;
  margin-top: 4px;
}
.portfolio__content__illustrationcontainer__column__opacity {
  opacity: 75%;
}
.portfolio__content__illustrationcontainer__column img {
  width: 100%;
}

footer {
  width: 100%;
  background-color: #421ced;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
footer p {
  color: #FAF5F0;
  font-size: 14px;
}
footer a,
footer a:hover,
footer a:visited,
footer a:active {
  color: #FAF5F0;
}/*# sourceMappingURL=style.css.map */