@import "https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css";
@import url("https://fonts.googleapis.com/css?family=Oxygen:700&display=swap");
body {
  font-family: "Helvetica Neue", sans-serif;
  color: #fffdfd;
  background-color: #000000 !important;
  margin: 0;
  padding: 0;
}

.icons a {
  color: #6E07F3 !important;
}

.hero {
  align-items: stretch;
  color: white !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero a {
  background-color: #6E07F3 !important;
  color: white !important;
  font-size: 1em !important;
  padding: 0.5em 1em !important;
  border: none !important;
  border-radius: 5px !important;
  cursor: pointer !important;
  margin-right: 1em !important;
}

.title {
  color: #6E07F3 !important;
}

.subtitle {
  color: #fffdfd !important;
}

.label {
  color: #fffdfd !important;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #000000;
  padding: 2em 0;
  text-align: center !important;
}

header img {
  margin-bottom: 5em;
}

header h1 {
  font-size: 3em;
  margin-bottom: 0.5em;
}

header p {
  font-size: 1.2em;
  font-weight: 300;
  margin-bottom: 2em;
}

nav {
  display: flex;
  flex-direction: row;
}

.navbar-menu {
  justify-content: center;
}

nav img {
  width: 55px;
  margin-right: 26em;
  cursor: pointer;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lines {
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: auto;
  width: 90vw;
}

.line {
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.line::after {
  content: "";
  display: block;
  position: absolute;
  height: 15vh;
  width: 100%;
  top: -50%;
  left: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 75%, #ffffff 100%);
  -webkit-animation: drop 7s 0s infinite;
  animation: drop 7s 0s infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
  animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}

.line:nth-child(1) {
  margin-left: -25%;
}

.line:nth-child(1)::after {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.line:nth-child(3) {
  margin-left: 25%;
}

.line:nth-child(3)::after {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}

@-webkit-keyframes drop {
  0% {
    top: -50%;
  }
  100% {
    top: 110%;
  }
}
@keyframes drop {
  0% {
    top: -50%;
  }
  100% {
    top: 110%;
  }
}
.parallax-1 {
  background: url(images/image.png);
  background-size: 100%;
  background-repeat: no-repeat;
  /* background-size: cover; */
  background-position: center center;
  background-attachment: fixed;
  height: 2000px;
}

.parallax-2 {
  background: url(parallax/kahuna.png);
  background-size: 100%;
  background-repeat: no-repeat;
  /* background-size: cover; */
  background-position: center center;
  background-attachment: fixed;
  margin-top: -117px;
}

.parallax-3 {
  background: url(parallax/parallax1.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  /* background-size: cover; */
  background-position: center center;
  background-attachment: fixed;
  margin-top: -117px;
}

nav a {
  color: #6E07F3;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: 500;
}

nav a:hover {
  color: #999;
}

main {
  background-color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2em;
  color: white;
  margin-top: 10em;
}

#top {
  height: 100vh;
  z-index: 0;
}

#about {
  background-color: #6E07F3;
  color: white;
  padding: 1.5rem;
  margin-bottom: 2em;
  display: flex;
  flex-direction: column;
  text-align: center !important;
  padding: 2em;
}

section h1 {
  font-size: 7vh;
  color: #6E07F3;
}

section h2 {
  font-size: 1.5em;
  margin-bottom: 1em;
}

section h3 {
  font-size: 1.2em;
  color: white;
  font-weight: bold;
}

section p {
  font-size: 2vh;
  line-height: 1.5;
  margin-bottom: 1em;
  color: rgb(0, 0, 0);
  display: flex;
}

section ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

section li {
  font-size: 1.2em;
  margin-right: 1em;
}

section .button {
  display: inline-block;
  background-color: #333;
  color: #fff;
  font-size: 1em;
  padding: 0.5em 1em;
  border: none;
  cursor: pointer;
}

section .button:hover {
  background-color: #444;
}

section form {
  display: flex;
  flex-direction: column;
}

section input,
section textarea {
  width: 100%;
  font-size: 1em;
  padding: 0.5em;
  border: 1px solid #ddd;
  margin-bottom: 1em;
}

section textarea {
  height: 200px;
}

section input[type=submit] {
  background-color: #333;
  color: #fff;
  font-size: 1em;
  padding: 0.5em 1em;
  border: none;
  cursor: pointer;
}

section input[type=submit]:hover {
  background-color: #444;
}

footer {
  display: flex;
  justify-content: center;
  padding: 2em;
  color: #999;
  font-size: 0.8em;
  text-align: center;
}

#intro {
  text-align: center !important;
}

.skills-banners {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.skills-banner {
  width: 15%;
  text-align: left !important;
}

.skills-banner img {
  margin: 0 auto;
  display: block;
}

.skills-banner h3 {
  font-size: 3vh;
  text-align: center;
}

.skills-banner p {
  font-size: 2vh;
  line-height: 1.5;
  text-align: left;
}

.text {
  font-size: 2vh;
  line-height: 1.5;
}

#time {
  font-size: 36px;
  font-weight: bold;
  color: #333;
}

#contact form .button {
  background-color: #6E07F3 !important;
  color: white !important;
  font-size: 1em !important;
  padding: 0.5em 1em !important;
  border: none !important;
  border-radius: 5px !important;
  cursor: pointer !important;
}

.projects {
  display: inline-block;
  position: relative;
  width: 33.3%;
}

.projects img {
  height: auto;
  cursor: pointer;
}

.projects-about {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.projects:hover .projects-about {
  visibility: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
}

.projects-about h3 {
  margin-bottom: 1em;
}

.projects:hover .projects-about .button {
  background-color: #6E07F3 !important;
  color: white !important;
  font-size: 1em !important;
  padding: 0.5em 1em !important;
  border: none !important;
  border-radius: 5px !important;
  cursor: pointer !important;
}

.title {
  text-align: center;
  font-size: 7vh !important;
}

.subtitle {
  text-align: center;
}

/* Define the keyframe animation */
@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}
/* Apply the animation to the logo when it is hovered */
.logo:hover {
  animation: shake 0.5s;
}

/*rotating icon*/
.square_icon {
  transition: 0.5s;
}

/* Stacking Cards */
:root {
  --card-height: 40vw;
  --card-margin: 4vw;
  --card-top-offset: 1em;
  --numcards: 4;
  --outline-width: 0px;
}

#cards {
  padding-bottom: calc(var(--numcards) * var(--card-top-offset)); /* Make place at bottom, as items will slide to that position*/
  margin-bottom: var(--card-margin); /* Don't include the --card-margin in padding, as that will affect the scroll-timeline*/
}

#card_1 {
  --index: 1;
}

#card_2 {
  --index: 2;
}

#card_3 {
  --index: 3;
}

.projectcard {
  position: sticky;
  top: 0;
  padding-top: calc(var(--index) * var(--card-top-offset));
  font-size: 1em;
  margin-right: 0em;
}

@supports (animation-timeline: works) {
  @scroll-timeline cards-element-scrolls-in-body {
    source: selector(body);
    scroll-offsets: selector(#cards) start 1, selector(#cards) start 0;
    start: selector(#cards) start 1; /* Start when the start edge touches the top of the scrollport */
    end: selector(#cards) start 0; /* End when the start edge touches the start of the scrollport */
    time-range: 4s;
  }
  .projectcard {
    --index0: calc(var(--index) - 1); /* 0-based index */
    --reverse-index: calc(var(--numcards) - var(--index0)); /* reverse index */
    --reverse-index0: calc(var(--reverse-index) - 1); /* 0-based reverse index */
  }
  .card__content {
    transform-origin: 50% 0%;
    will-change: transform;
    --duration: calc(var(--reverse-index0) * 1s);
    --delay: calc(var(--index0) * 1s);
    animation: var(--duration) linear scale var(--delay) forwards;
    animation-timeline: cards-element-scrolls-in-body;
  }
  @keyframes scale {
    to {
      transform: scale(calc(1.1 - 0.1 * var(--reverse-index)));
    }
  }
}
/** PAGE STYLING **/
.cardcontainer {
  max-width: 100vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 35px;
  margin: 0 auto;
  padding: 40px 0;
}

#cards {
  list-style: none;
  outline: calc(var(--outline-width) * 10) solid blue;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--card-margin);
}

.projectcard {
  outline: var(--outline-width) solid hotpink;
}

.card__content {
  box-shadow: 0 0.2em 1em rgba(0, 0, 0, 0.1), 0 1em 2em rgba(0, 0, 0, 0.1);
  background: rgb(255, 255, 255);
  color: rgb(10, 5, 7);
  border-radius: 1em;
  overflow: hidden;
  display: grid;
  grid-template-areas: "text img";
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  align-items: stretch;
  outline: var(--outline-width) solid lime;
}

.card__content > div {
  grid-area: text;
  width: 80%;
  place-self: center;
  text-align: left;
  display: grid;
  gap: 1em;
  place-items: start;
}

.card__content > figure {
  grid-area: img;
  overflow: hidden;
}

.card__content > figure > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__content a {
  background-color: #6E07F3 !important;
  color: white !important;
}

.circle {
  width: 200px;
  height: 200px;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 50%;
}
.circle:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0.3;
}

.blob {
  width: 80%;
  height: 80%;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #80EAF3;
  opacity: 0.5;
  border-radius: 50px;
}

@keyframes rotato {
  to {
    transform: rotate(359deg);
  }
}
.blob1 {
  animation: rotato 4s 0.5s linear infinite;
  transform-origin: 50% 52%;
}

.blob2 {
  animation: rotato 5s 0.2s linear infinite;
  transform-origin: 49% 49%;
}

.blob3 {
  animation: rotato 6s linear infinite reverse;
  transform-origin: 48% 52%;
}

.content {
  width: 100%;
  height: 100vh;
  background-color: #6E07F3;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  animation: fadeout 15s;
  animation-fill-mode: forwards;
}
.content .loading {
  width: 80px;
  height: 50px;
  position: relative;
}
@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.content .loaded .loading {
  display: none;
}
.content p {
  top: 0;
  padding: 0;
  margin: 0;
  color: #5389a6;
  font-family: "Oxygen", sans-serif;
  animation: text 3.5s ease both infinite;
  font-size: 12px;
  letter-spacing: 1px;
}
@keyframes text {
  0% {
    letter-spacing: 1px;
    transform: translateX(0px);
  }
  40% {
    letter-spacing: 2px;
    transform: translateX(26px);
  }
  80% {
    letter-spacing: 1px;
    transform: translateX(32px);
  }
  90% {
    letter-spacing: 2px;
    transform: translateX(0px);
  }
  100% {
    letter-spacing: 1px;
    transform: translateX(0px);
  }
}
.content span {
  background-color: #5389a6;
  border-radius: 50px;
  display: block;
  height: 16px;
  width: 16px;
  bottom: 0;
  position: absolute;
  transform: translateX(64px);
  animation: loading 3.5s ease both infinite;
}
.content span:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #a6dcee;
  border-radius: inherit;
  animation: loading2 3.5s ease both infinite;
}
@keyframes loading {
  0% {
    width: 16px;
    transform: translateX(0px);
  }
  40% {
    width: 100%;
    transform: translateX(0px);
  }
  80% {
    width: 16px;
    transform: translateX(64px);
  }
  90% {
    width: 100%;
    transform: translateX(0px);
  }
  100% {
    width: 16px;
    transform: translateX(0px);
  }
}
@keyframes loading2 {
  0% {
    transform: translateX(0px);
    width: 16px;
  }
  40% {
    transform: translateX(0%);
    width: 80%;
  }
  80% {
    width: 100%;
    transform: translateX(0px);
  }
  90% {
    width: 80%;
    transform: translateX(15px);
  }
  100% {
    transform: translateX(0px);
    width: 16px;
  }
}

@media screen and (max-width: 768px) {
  .projects {
    display: flex;
    flex-direction: column; /* Stack skills banners vertically */
    width: 100%;
  }
  .skills-banners {
    display: flex;
    flex-direction: column; /* Stack skills banners vertically */
  }
  .skills-banner {
    width: 100%; /* Make each banner fill the full width */
  }
  #contact {
    flex-direction: column; /* Stack form elements vertically on mobile */
  }
  .card__content {
    display: flex;
    flex-direction: column;
  }
  .card__content figure {
    order: 2;
  }
  .logo:hover {
    animation: none;
  }
  .mobileshake {
    animation: shake 0.5s !important;
  }
  nav {
    flex-direction: column;
  }
  nav img {
    display: none;
  }
  nav ul {
    display: block;
    margin: 0;
    padding: 0;
  }
  nav li {
    margin: 0;
    display: block;
  }
  nav ul {
    flex-direction: column;
  }
}
.arrow {
  width: 5%;
  margin-top: 163px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  position: relative;
}

.p-2 {
  padding: 0.5rem;
  flex: 1 1 0%;
  margin-top: 10rem;
}

.center {
  margin: auto;
  width: 60%;
  padding: 20px;
}

#cover {
  margin: 0 auto;
}

#cover > img {
  width: 45%;
  margin: 1.66%;
  height: 25%;
}

.bottom-left {
  position: absolute;
  bottom: 382px;
  left: 607px;
  color: rgb(0, 0, 0);
  font-weight: bold;
}

.bottom-right {
  position: absolute;
  bottom: 381px;
  left: 1041px;
  color: rgb(0, 0, 0);
  font-weight: bold;
}

.wrapingimage {
  float: left;
  margin: 30px 12px 3px 4px;
}

.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}

.social {
  transform: translate(0px, 3px);
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}

.list-inline-item {
  margin-right: 10px;
}

.social {
  padding: 0.5vh;
}

/*Sectioning*/
.wrapingimageright {
  float: right;
  margin-right: 2vh;
}

.wrapingimageleft {
  float: left;
  margin-right: 2vh;
}

.wrapingimageleftt {
  float: left;
  margin-right: 4vh;
}

.wrapingimagerightt {
  margin-right: 4vh;
}

#mobile {
  padding-top: 0vh;
}

@media (max-width: 768px) {
  #slider {
    position: relative;
    width: 323px !important;
    height: 419px !important;
    overflow: hidden;
  }
}

/*# sourceMappingURL=style.css.map */
