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

body {
  background-color: #070707;
  color: #efefef;
}

a {
  text-decoration: none;
}
a:focus-visible {
  outline: none;
}

.link {
  transition: 400ms;
}

html {
  scroll-behavior: smooth;
}

.has-fade {
  visibility: hidden;
}

@keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}
.fade-in {
  animation: fade-in 700ms ease-in-out forwards;
}

@keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}
.fade-out {
  animation: fade-out 1000ms ease-in-out forwards;
}

@keyframes moveSlideshow1 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes moveSlideshow2 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes flash {
  0% {
    border-right: 0.2rem solid #efefef;
  }
  25% {
    border-right: 0.2rem solid #474646;
  }
  100% {
    border-right: 0.2rem solid #070707;
  }
}
.navbar {
  z-index: 30;
  position: fixed;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background-color: #5468a2;
  top: 0;
  left: 0;
  right: 0;
  height: 3.125rem;
  padding: 0rem 1.5625rem;
  box-shadow: 0rem 0.3125rem 1.25rem 0.625rem #46578982;
}
@media (max-width: 63.9375em) {
  .navbar {
    grid-template-columns: 1fr 2fr;
  }
}
.navbar a#brand {
  color: #c1c1c1;
  font-size: 1.875rem;
}
.navbar__options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-right: 1.875rem;
  justify-self: end;
  gap: 0.3125rem;
}
@media (max-width: 39.9375em) {
  .navbar__options {
    display: none;
  }
}
@media (max-width: 63.9375em) {
  .navbar__options {
    margin-right: 0rem;
  }
}
.navbar__options__phone {
  visibility: hidden;
  display: grid;
  position: fixed;
  z-index: 30;
  justify-items: center;
  grid-template-columns: 1fr;
  background-color: #5468a2;
  top: 3.125rem;
  left: 0;
  right: 0;
  box-shadow: 0rem 0.3125rem 1.25rem 0.625rem #46578982;
  gap: 0.625rem;
}
@media (min-width: 40em) {
  .navbar__options__phone {
    display: none;
  }
}
.navbar__options__phone > a {
  font-size: 1.25rem;
  text-align: center;
  color: #c1c1c1;
}
.navbar__options__phone > a:nth-child(2n+1) {
  margin: 0.9375rem 0;
}
.navbar__options__phone > a:hover {
  color: #efefef;
}
.navbar__options > a {
  font-size: 1.25rem;
  text-align: center;
  color: #c1c1c1;
}
.navbar__options > a:hover {
  color: #efefef;
}
.navbar > #hamburger {
  cursor: pointer;
  justify-self: end;
}
@media (min-width: 40em) {
  .navbar > #hamburger {
    display: none;
  }
}
.navbar > #hamburger > span {
  display: block;
  width: 1.75rem;
  height: 0.25rem;
  background: #efefef;
}
.navbar > #hamburger > span:not(:last-child) {
  margin-bottom: 0.3125rem;
}

.cross {
  text-align: end;
  font-size: 1.625rem;
  color: #767676;
  margin: 0.1875rem 0.6875rem 0 0;
  font-weight: 700;
  font-family: system-ui;
  cursor: pointer;
  transition: ease-in-out 400ms;
}
.cross:hover {
  color: #070707;
}

.modal {
  display: grid;
  align-items: center;
  justify-items: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: fixed;
  visibility: hidden;
  background: #2b023aa8;
  backdrop-filter: blur(0.1875rem);
  z-index: 1000;
}
.modal__container {
  display: grid;
  height: 75%;
  width: 76%;
  grid-template-columns: 5fr 2fr;
}
@media (max-width: 63.9375em) {
  .modal__container {
    grid-template-columns: 1fr;
    grid-template-rows: 65% 35%;
    height: 70%;
    width: 90%;
  }
}
@media (max-width: 39.9375em) {
  .modal__container {
    grid-template-rows: 45% 55%;
  }
}
.modal__container > #img {
  display: grid;
  border-radius: 1.25rem 0 0 1.25rem;
  background: #070707;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 63.9375em) {
  .modal__container > #img {
    border-radius: 1.25rem 1.25rem 0 0;
  }
}
.modal__container > #img > div > span {
  display: none;
  color: #474646;
}
@media (max-width: 63.9375em) {
  .modal__container > #img > div > span {
    display: block;
  }
}
.modal__container > #img > div > span:hover {
  color: #c1c1c1;
}
.modal__container__info {
  border-radius: 0 1.25rem 1.25rem 0;
  background: #c1c1c1;
}
@media (max-width: 63.9375em) {
  .modal__container__info {
    border-radius: 0 0 1.25rem 1.25rem;
  }
}
.modal__container__info > .header {
  display: grid;
}
@media (max-width: 63.9375em) {
  .modal__container__info > .header > span {
    display: none;
  }
}
.modal__container__info > .body {
  display: grid;
  color: #070707;
  font-size: 1.125rem;
  margin: 0.625rem 0.8125rem;
  padding: 0 1.125rem;
}
@media (max-width: 87.4375em) {
  .modal__container__info > .body {
    font-size: 1rem;
  }
}
@media (max-width: 63.9375em) {
  .modal__container__info > .body {
    font-size: 0.875rem;
  }
}
@media (max-width: 39.9375em) {
  .modal__container__info > .body {
    font-size: 0.75rem;
  }
}
.modal__container__info > .body > * {
  font-size: 1.625em;
  margin-top: 0.625rem;
}
.modal__container__info > .body > .title {
  margin-top: 0.625rem;
  font-size: 2.1875em;
  text-align: center;
}
.modal__container__info > .body > .description {
  color: #474646;
}
.modal__container__info > .body > .technologies {
  font-size: 1.25em;
  color: #0425ff;
}
.modal__container__info > .body > .links {
  display: flex;
}
.modal__container__info > .body > .links > a {
  flex-grow: 1;
  text-align: center;
}

.introduction {
  display: grid;
  align-items: center;
  margin-top: 70px;
  height: 600px;
  background-image: url(../img//backGround2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
}
@media (max-width: 63.9375em) {
  .introduction {
    background-size: 100%;
    height: 350px;
  }
}
@media (max-width: 39.9375em) {
  .introduction {
    background-size: 600px;
    height: 250px;
  }
}
.introduction__main {
  font-size: 16px;
}
@media (max-width: 63.9375em) {
  .introduction__main {
    font-size: 0.6875rem;
  }
}
@media (max-width: 39.9375em) {
  .introduction__main {
    font-size: 0.5rem;
  }
}
.introduction__main > h1 {
  font-size: 4.375em;
}
.introduction__main > h2 {
  font-size: 3.125em;
}

#technologies {
  position: relative;
  width: 100%;
  background: #5468a2;
  box-shadow: 0rem 0.3125rem 1.25rem 0.625rem #46578982;
  margin-top: 30px;
  overflow: hidden;
}
#technologies > div {
  display: flex;
  width: 200%;
}
#technologies > div:nth-child(odd) > div {
  animation: moveSlideshow1 15s linear infinite;
}
#technologies > div:nth-child(even) > div {
  animation: moveSlideshow2 15s linear infinite;
}
#technologies > div > div {
  display: flex;
  width: 50%;
  justify-content: space-around;
}
#technologies > div > div > p {
  font-size: 30px;
  margin: 10px;
}
@media (max-width: 63.9375em) {
  #technologies > div > div > p {
    font-size: 25px;
    justify-content: space-evenly;
  }
}
@media (max-width: 39.9375em) {
  #technologies > div > div > p {
    font-size: 16px;
  }
}

.about-me {
  display: grid;
  align-items: center;
  justify-items: center;
  grid-template-columns: 1fr 1fr;
  margin-top: 1.875rem;
  width: 100%;
  height: 300px;
}
@media (max-width: 39.9375em) {
  .about-me {
    grid-template-columns: 1fr;
    grid-template-row: 1fr 1fr;
  }
}
.about-me > a {
  color: #efefef;
  background: #5468a2;
  border-radius: 34px;
  text-align: center;
  font-size: 30px;
  width: 150px;
  align-self: center;
  border: 1px solid #0425ff;
  padding: 8px 10px;
  transition: 600ms;
}
.about-me > a:hover {
  background: #650082;
  box-shadow: 0 0 12px 0px #0425ff;
}
.about-me > h2 {
  border-right: solid 1px #efefef;
}
.about-me > h2 > span {
  border-right: 0.2rem solid #efefef;
  animation: flash 1000ms infinite;
}

.footer {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  justify-items: center;
  align-items: center;
  margin-top: 200px;
  background-color: #5468a2;
  height: 200px;
}
.footer__first .icon {
  height: 45px;
  margin: 10px;
  border-radius: 50%;
  transition: 0.5s;
}
.footer__first .icon:hover {
  box-shadow: 0px 0px 7px 3px #759eff;
}
.footer__second > a {
  font-size: 1.25rem;
  margin: 15px;
  text-align: center;
  color: #c1c1c1;
}
.footer__second > a:hover {
  color: #efefef;
}
.footer__description > p {
  color: #ffffff54;
}

main {
  margin-top: 30px;
}
main > h2 {
  text-align: center;
  font-size: 40px;
}
main > #folder {
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  margin: 10px;
  gap: 10px;
}
main > #folder > .project {
  display: grid;
  align-items: center;
  text-align: center;
  color: #c1c1c1;
  width: 100%;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 50% 50%;
  height: 187px;
  border-radius: 41px;
  transition: 500ms;
  font-size: 40px;
  text-shadow: 1px 1px 1px #46578982;
  transition: all 400ms ease-in-out;
}
main > #folder > .project:hover {
  transform: scale(1.01);
  box-shadow: 0 0 11px 3px #46578982;
  color: #efefef;
  text-shadow: 1px 1px 20px #0425ff;
  cursor: pointer;
}

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