@import url("https://fonts.cdnfonts.com/css/poppins");
* {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: black;
}

a, a:active, a:visited, a:hover {
  text-decoration: none;
}

.swiper {
  width: 100%;
}

.swiper-pagination {
  display: none;
}

.entry {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 10vw;
  height: 100vh;
  width: 100vw;
  box-sizing: border-box;
  color: white;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.entry div h1 {
  font-size: 3.5vw;
  font-weight: 300;
}
.entry div h1 .typed-cursor {
  transition: opacity 100ms;
}
.entry div div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 13vw;
}
.entry div div a {
  color: #ffffff;
  font-size: 1.5vw;
  pointer-events: all;
  text-decoration: none;
  background-image: linear-gradient(#ffffff, #ffffff);
  background-size: 0% 0.1em;
  background-position-x: 0%;
  background-position-y: 100%;
  background-repeat: no-repeat;
  transition: background-size 0.2s ease-in-out;
}
.entry div div a:hover {
  background-size: 100% 0.1em;
}

.particle-background {
  position: fixed;
  z-index: -100;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 30%;
}

.portfolio-taster-collection .work-container {
  position: fixed;
  top: 50%;
  right: -500px;
  transform: translateY(-50%);
  flex-shrink: 0;
  height: 55vh;
  width: 325px;
  border-radius: 50px;
  background-color: black;
  color: white;
  transition: right 200ms ease-in-out;
}
.portfolio-taster-collection .work-container :hover {
  right: 20px;
}
.portfolio-taster-collection .work-container img {
  width: 100%;
  height: 100%;
  opacity: 0.7;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  cursor: pointer;
  border-radius: 50px;
  transition: opacity 200ms;
}
.portfolio-taster-collection .work-container img:hover {
  opacity: 0.5;
}
.portfolio-taster-collection .work-container .text {
  position: absolute;
  font-family: "Poppins", sans-serif;
  font-size: calc(100% - 2pt);
  margin-left: 30px;
  margin-right: 30px;
  color: white;
  bottom: 6%;
}
.portfolio-taster-collection .fit-center img {
  -o-object-position: center;
     object-position: center;
}
.portfolio-taster-collection .fit-top img {
  -o-object-position: -60px;
     object-position: -60px;
}

.logo {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 300;
  width: 90px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 3.5vh 4vw;
  border-radius: 0 0 0 20px;
}

.portfolio {
  padding: calc(51px + 5vw) 10vw 100px 10vw;
  color: white;
}
.portfolio .end-message {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.portfolio .end-message h1 {
  font-weight: 300;
}
.portfolio .end-message a {
  color: blue;
  font-weight: 500;
  text-decoration: underline;
}
.portfolio .h1centered {
  margin-top: 40px;
  margin-bottom: 100px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  font-size: 50px;
  font-weight: 200;
}
.portfolio .h1centered a {
  color: #ffffff;
  font-size: 1.5vw;
  pointer-events: all;
  text-decoration: none;
  background-image: linear-gradient(#ffffff, #ffffff);
  background-size: 0% 0.1em;
  background-position-x: 0%;
  background-position-y: 100%;
  background-repeat: no-repeat;
  transition: background-size 0.2s ease-in-out;
}
.portfolio .h1centered a:hover {
  background-size: 100% 0.1em;
}
.portfolio .swiper-slider {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  flex-direction: row;
  margin-bottom: 90px;
}
.portfolio .swiper-slider .swiper-wrapper .swiper-slide-active:hover .portfolio-image img {
  opacity: 0.75;
}
.portfolio .swiper-slider .swiper-wrapper .swiper-slide {
  position: relative;
  height: 700px;
  width: 600px;
  cursor: pointer;
}
.portfolio .swiper-slider .swiper-wrapper .swiper-slide .portfolio-image {
  position: relative;
  border-radius: 50px;
  height: 100%;
  background-color: #000000;
}
.portfolio .swiper-slider .swiper-wrapper .swiper-slide .portfolio-image img {
  width: 100%;
  height: 100%;
  opacity: 0.6;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  border-radius: 50px;
  transition: opacity 200ms;
}
.portfolio .swiper-slider .swiper-wrapper .swiper-slide .portfolio-text {
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 5%;
  z-index: 300;
  font-size: medium;
  height: -moz-fit-content;
  height: fit-content;
  width: auto;
  word-wrap: break-word;
}
.portfolio .swiper-slider .swiper-wrapper .swiper-slide .fit-center img {
  -o-object-position: center;
     object-position: center;
}
.portfolio .swiper-slider .swiper-wrapper .swiper-slide .fit-left img {
  -o-object-position: -60px;
     object-position: -60px;
}
.portfolio .swiper-slider .swiper-wrapper .swiper-slide .fit-top img {
  -o-object-position: top;
     object-position: top;
}

.form {
  position: relative;
  z-index: 200;
  padding: calc(51px + 3.5vh + 20px) 10vw 100px 10vw;
}
.form h1 {
  color: #ffffff;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-bottom: 70px;
  font-weight: 200;
  font-size: 50px;
}
.form p {
  font-size: 25px;
  font-weight: 300;
  margin-bottom: 15px;
}
.form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form form div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}
.form form div input {
  width: 100%;
}
.form form input {
  background-color: rgba(0, 0, 0, 0);
  height: 50px;
  border: solid white 2px;
  border-radius: 10px;
  padding: 10px;
  font-size: large;
  color: white;
}
.form form #subject {
  height: 50px;
}
.form form input::-moz-placeholder {
  color: white;
  font-size: large;
  padding-left: 10px;
}
.form form input::placeholder {
  color: white;
  font-size: large;
  padding-left: 10px;
}
.form form textarea {
  background-color: rgba(0, 0, 0, 0);
  height: 300px;
  border: solid white 2px;
  border-radius: 10px;
  padding: 20px;
  font-size: large;
  color: white;
}
.form form input[type=submit] {
  background-color: rgba(0, 0, 0, 0);
  height: 80px;
  border: solid white 2px;
  border-radius: 10px;
  font-size: large;
  color: white;
  transition: background-color 200ms ease-in-out, color 200ms ease-in-out;
  cursor: pointer;
}
.form form input[type=submit]:hover {
  background-color: white;
  color: #000000;
}

@media screen and (max-width: 1050px) {
  .entry div h1 {
    font-size: 7vw;
  }
  .entry div div {
    width: 32vw;
  }
  .entry div div a {
    font-size: 3.6vw;
    background-size: 100% 0.1em;
  }
  .portfolio-taster-collection .work-container {
    top: 75%;
    transform: none;
    transition: top 200ms ease-in-out, right 200ms ease-in-out;
  }
  .portfolio-taster-collection .work-container:hover {
    top: 35%;
  }
  .logo {
    padding-right: 20px;
    padding-left: 20px;
  }
  .portfolio .h1centered {
    font-size: 40px;
    margin-bottom: 45px;
  }
  .portfolio .end-message h1 {
    font-size: 20px;
  }
  .portfolio .swiper-slider .swiper-wrapper .swiper-slide {
    height: 400px;
    width: 300px;
  }
  .portfolio .swiper-slider .swiper-wrapper .swiper-slide .portfolio-text {
    left: 8%;
    right: 8%;
    bottom: 8%;
    font-size: small;
  }
}/*# sourceMappingURL=styles.css.map */