* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
  font-family: "Poppins", sans-serif;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  background: linear-gradient(86deg, rgb(122, 189, 250) 0%, rgb(0, 117, 255) 48%, rgb(3, 108, 255) 100%, rgb(14, 80, 255) 100%, rgb(239, 71, 6) 100%, rgb(189, 206, 195) 100%, rgb(0, 255, 85) 100%, rgb(14, 145, 255) 100%, rgb(0, 255, 25) 100%, rgb(18, 159, 255) 100%, rgb(50, 116, 255) 100%);
}

main {
  flex: 1;
}

@keyframes moveFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-300px);
  }
  50% {
    opacity: 0.5;
    transform: translateX(14px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fromdownToUp {
  0% {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  }
  50% {
    clip-path: polygon(0 100%, 100% 100%, 100% 40%, 0 40%);
  }
  100% {
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
  }
}
.header {
  width: 100%;
  height: 6%;
  z-index: 10;
  position: fixed;
  display: flex;
  justify-content: space-evenly;
  background: rgb(122, 189, 250);
  background: linear-gradient(86deg, rgb(122, 189, 250) 0%, rgb(0, 117, 255) 48%, rgb(3, 108, 255) 100%);
}
.header .logoContainer {
  flex: 1;
  align-content: center;
}
.header .logoContainer .logo {
  margin-left: 5rem;
  font-size: 2rem;
  color: whitesmoke;
}
.header nav {
  flex: 1;
  align-content: center;
}
.header nav .navBar {
  font-size: 1.9rem;
  display: flex;
  justify-content: space-evenly;
  list-style: none;
}
.header nav .navBar li a {
  color: whitesmoke;
  text-decoration: none;
  border-radius: 0.5rem;
  padding: 0.2rem 0.6rem;
  transition: 1s;
}
.header nav .navBar li a:hover {
  background-color: whitesmoke;
  color: rgb(32, 105, 241);
}
.header .mobileMenu {
  display: none;
  background-color: rgb(32, 105, 241);
  border: none;
  cursor: pointer;
  margin-right: 2rem;
  margin-left: auto;
  position: relative;
}
.header .mobileMenu #one,
.header .mobileMenu #two,
.header .mobileMenu #three {
  transition: 1s;
}
.header .mobileMenu .line-one {
  transform: rotate(45deg) translate(5.1px, 5.1px);
  transition: 1s;
}
.header .mobileMenu .line-two {
  opacity: 0;
}
.header .mobileMenu .line-three {
  transform: rotate(-45deg) translate(6.1px, -6.1px);
  transition: 1s;
}
.header .mobileMenu .mobileMenuItem {
  background-color: whitesmoke;
  height: 4px;
  width: 25px;
  margin-top: 4px;
  margin-bottom: 3px;
  list-style: none;
}

.mobileMenuDisplayedItems {
  position: fixed;
  transform: translateX(-100%);
  overflow-x: hidden;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  opacity: 0;
  height: 100%;
  width: 100%;
  background-color: rgb(32, 105, 241);
  transition: 1s;
  z-index: -1;
}
.mobileMenuDisplayedItems ul {
  height: 30%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
}
.mobileMenuDisplayedItems ul li {
  list-style: none;
}
.mobileMenuDisplayedItems ul li a {
  text-decoration: none;
  color: whitesmoke;
  font-size: 1.5rem;
  border-radius: 0.5rem;
  padding: 0.4rem;
}
.mobileMenuDisplayedItems ul li a:hover {
  background-color: whitesmoke;
  color: rgb(32, 105, 241);
  transition: 1.5s;
}

.buttomUndisplay {
  border: none;
  background-color: rgb(32, 105, 241);
  color: whitesmoke;
  cursor: pointer;
  font-size: 2rem;
  border-radius: 2rem;
  padding: 0rem 0.5rem;
}
.buttomUndisplay:hover {
  background-color: whitesmoke;
  color: rgb(32, 105, 241);
  transition: 1.5s;
}

.displayMenu {
  opacity: 0.95;
  z-index: 1;
  transform: translateX(0%);
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .header .logo {
    margin-left: 0.5rem;
  }
  .header nav {
    display: none;
  }
  .header .mobileMenu {
    display: block;
    color: red;
  }
}
footer {
  color: rgb(32, 105, 241);
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 1rem;
  width: 100%;
  background-color: whitesmoke;
}
footer p {
  flex-basis: 100%;
  padding-left: 1rem;
}

main {
  height: 100vh;
}
main .homeCont {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  min-height: 100vh;
}
main .homeCont .textContainer {
  animation-duration: 1s;
  animation-name: fromdownToUp;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 80%;
  font-size: 1.7rem;
  color: whitesmoke;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}
main .homeCont .textContainer h1 {
  font-size: 3rem;
}
main .homeCont .textContainer .HomeButtonContact {
  color: whitesmoke;
  margin-top: 1rem;
  font-size: 1.4rem;
  text-decoration: none;
  border: 2px solid whitesmoke;
  border-radius: 0.5rem;
  padding: 0.5rem;
  text-align: center;
  width: 25%;
  box-shadow: 1px 1px 2px 0.5px rgba(0, 0, 0, 0.205);
  transition: 1s;
  transform: translateY(0px);
  animation-timing-function: linear;
}
main .homeCont .textContainer .HomeButtonContact:hover {
  background-color: whitesmoke;
  color: rgb(32, 105, 241);
  transform: translateY(-5px);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.089);
}
main .homeCont .textContainer .HomeButtonContact:active {
  background-color: rgb(32, 105, 241);
  color: whitesmoke;
  transform: translateY(10px);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.089);
}

@media only screen and (max-width: 769px) {
  main .homeCont {
    flex-direction: column;
    padding-bottom: 2rem;
  }
  main .homeCont .textContainer {
    align-items: center;
    text-align: center;
  }
  main .homeCont .textContainer h1,
  main .homeCont .textContainer p {
    width: 100%;
  }
  main .homeCont .textContainer .HomeButtonContact {
    width: 100%;
  }
}
@media only screen and (max-width: 321px) {
  main .homeCont {
    min-height: 100vh;
  }
  main .homeCont .textContainer h1 {
    font-size: 2rem;
  }
  main .homeCont .textContainer p {
    font-size: 1rem;
  }
  main .homeCont .textContainer .HomeButtonContact {
    font-size: 1rem;
    width: 100%;
  }
}
.projects {
  overflow: hidden;
}

.projects_title {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  height: 800px;
  color: whitesmoke;
}
.projects_title h1 {
  font-size: 4.5rem;
  text-align: center;
  animation-duration: 1.7s;
  animation-name: moveFromLeft;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

.textContainerProjects {
  animation-duration: 1s;
  animation-name: fromdownToUp;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
  clip-path: polygon(1% 100%, 100% 100%, 100% 100%, 0 100%);
  padding: 1.5rem;
  font-size: 2.2rem;
  height: 20%;
  gap: 1rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.textContainerProjects .container-scroll {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  gap: 1rem;
}
.textContainerProjects .container-scroll .linkProjects:link {
  flex-basis: 40%;
  flex-grow: 0.2;
  flex-shrink: 1;
  border-radius: 0.7rem;
  border: solid 1px whitesmoke;
  padding: 0.5rem;
  font-size: 1.5rem;
  color: whitesmoke;
  text-decoration: none;
  text-align: center;
  transform: translateY(0px);
  transition: 1s;
  box-shadow: 1px 1px 2px 0.5px rgba(0, 0, 0, 0.205);
}
.textContainerProjects .container-scroll .linkProjects:hover {
  background-color: whitesmoke;
  color: rgb(38, 146, 247);
  transform: translateY(-5px);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.089);
}
.textContainerProjects .container-scroll .linkProjects:active {
  background-color: rgb(32, 105, 241);
  color: whitesmoke;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.089);
}
.textContainerProjects .container-scroll p {
  margin-left: 1rem;
}

.projectContainer {
  display: flex;
  align-items: center;
  flex-direction: column;
  height: auto;
  margin-bottom: 10rem;
}
.projectContainer .titleCont {
  color: whitesmoke;
  font-size: 3rem;
  height: 8rem;
}
.projectContainer .js {
  margin-bottom: 5rem;
}
.projectContainer .fade-out {
  opacity: 0;
}
.projectContainer .fade-in-appear {
  opacity: 1;
  transition: opacity 1s linear;
  transform: translateY(-120px);
  transition: 1s;
}
.projectContainer .fade-out-left {
  opacity: 0;
  transform: translateX(-100px);
}
.projectContainer .fade-in-appear-left {
  opacity: 1;
  transition: opacity 1s linear;
  transform: translateX(0px);
  transition: 1s;
}
.projectContainer .containerMultiple {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.1rem;
  align-content: center;
  height: 50%;
  width: 100%;
}
.projectContainer .containerMultiple .containerProjectShow {
  height: 85rem;
  width: 100%;
  background-color: whitesmoke;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
}
.projectContainer .containerMultiple .containerProjectShow .projectOverview {
  width: 60%;
  height: 20%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  flex-direction: column;
}
.projectContainer .containerMultiple .containerProjectShow .title-projectOverview {
  font-size: 4rem;
  color: rgb(32, 105, 241);
}
.projectContainer .containerMultiple .containerProjectShow .title-projectOverview-descripton {
  color: rgb(32, 105, 241);
  font-size: 1.5rem;
  width: 85%;
}
.projectContainer .containerMultiple .containerProjectShow .conIndv {
  position: relative;
  background-image: linear-gradient(180deg, rgb(255, 255, 255), rgb(223, 223, 223));
  height: 33rem;
  border-radius: 1.5rem;
  color: rgb(38, 146, 247);
  text-align: center;
}
.projectContainer .containerMultiple .containerProjectShow .conIndv .video {
  border-radius: 1.5rem 1.5rem 0 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 11rem;
  width: 100%;
}
.projectContainer .containerMultiple .containerProjectShow .conIndv .containerButtom {
  position: absolute;
  top: 22rem;
  min-width: 200px;
  max-width: 200px;
}
.projectContainer .containerMultiple .containerProjectShow .conIndv .containerButtom .show:link, .projectContainer .containerMultiple .containerProjectShow .conIndv .containerButtom .show:visited {
  transform: translateY(0px);
  transition: 1s;
  text-decoration: none;
  color: rgb(32, 105, 241);
  padding: 0.5rem;
  border-radius: 0.5rem;
  margin: 0 0.5rem;
  box-shadow: 1px 1px 2px 0.5px rgba(0, 0, 0, 0.205);
  transition: 1s;
  display: inline-block;
}
.projectContainer .containerMultiple .containerProjectShow .conIndv .containerButtom .show:hover {
  color: whitesmoke;
  background-color: rgb(32, 105, 241);
  transform: translateY(-1px);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.089);
}
.projectContainer .containerMultiple .containerProjectShow .conIndv .containerButtom .show:active {
  color: rgb(32, 105, 241);
  background-color: whitesmoke;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.089);
}

.fade-out-up {
  opacity: 0;
  transform: translateY(100px);
}

.fade-in-appear-up {
  opacity: 1;
  transition-delay: 2s;
  transition: opacity 1s linear;
  transform: translateY(0px);
  transition: 2s;
}

.flip-card {
  background-color: transparent;
  flex-basis: 30rem;
  flex-shrink: 1;
  perspective: 1000px;
}
.flip-card .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  box-shadow: 0.1rem 0.1rem 0.5rem 0.1rem rgb(161, 161, 161);
  border-radius: 1rem;
}
.flip-card .flip-card-inner .flip-card-front {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.flip-card .flip-card-inner .flip-card-back {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  transform: rotateY(180deg);
}
.flip-card .flip-card-inner .flip-card-front,
.flip-card .flip-card-inner .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 5%;
  backface-visibility: hidden;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

@media only screen and (max-width: 780px) {
  .projectContainer {
    justify-content: center;
  }
  .projectContainer .containerMultiple .containerProjectShow .title-projectOverview {
    font-size: 3.5rem;
  }
  .projectContainer .containerMultiple .containerProjectShow .title-projectOverview-descripton {
    font-size: 1.3rem;
    width: 100%;
  }
  .projectContainer .containerMultiple .containerProjectShow .projectOverview {
    width: 90%;
  }
  .projectContainer .containerMultiple .conIndv {
    flex-grow: 0.6;
  }
  .projectContainer .titleCont {
    font-size: 2rem;
    text-align: center;
  }
  .flip-card {
    flex-basis: 25rem;
  }
  .projects_title {
    flex-wrap: wrap;
    align-content: center;
  }
  .projects_title h1 {
    font-size: 2.5rem;
  }
  .textContainerProjects {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-basis: 90%;
    padding: 0 1rem;
    font-size: 1.4rem;
    text-align: center;
  }
  .textContainerProjects p {
    margin: 0;
  }
  .textContainerProjects .container-scroll {
    justify-content: center;
    align-items: center;
    margin: 0;
    width: 100%;
  }
  .textContainerProjects .container-scroll .linkProjects:link {
    margin: 0;
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 280px) {
  .containerButtom {
    width: 80%;
  }
}
main .container-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  min-height: 100vh;
}
main .container-contact .contact {
  font-size: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  flex: 0.15 0.2 auto;
  align-items: center;
  border: solid whitesmoke 1px;
  border-radius: 3rem;
  height: 40rem;
  transition: 1s;
}
main .container-contact .contact:hover {
  background-color: whitesmoke;
  transform: translateY(-1rem);
}
main .container-contact .contact:hover h3,
main .container-contact .contact:hover a {
  color: rgb(32, 105, 241);
}
main .container-contact .contact h3 {
  color: whitesmoke;
}
main .container-contact .contact a {
  text-decoration: none;
  color: whitesmoke;
  font-size: 1.4rem;
  transition: 1s;
  border-radius: 1rem;
  padding: 0 0.4rem;
}
main .container-contact .contact a:hover {
  background-color: rgb(32, 105, 241);
  color: whitesmoke;
}

@media only screen and (max-width: 769px) {
  main .container-contact {
    align-content: center;
    gap: 3rem;
  }
  main .container-contact .contact {
    width: 50%;
    height: 20rem;
  }
}