@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,400;0,700;0,900;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,400;0,700;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");
:root {
  --bg-color: #151515;
  --text: white;
  --read-text: #d2d2d2;
  --accent: #ffa500;
  --accent2: #b37400;
  --nav-color: rgba(0, 0, 0, 0.807);
}

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

html {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  /* font-family: 'Montserrat'; */
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text);
  background: var(--bg-color);
  background-image: radial-gradient(gray 1px, transparent 0);
  background-size: 60px 60px;
  background-position: top;
  scroll-behavior: smooth;
  animation-name: bgMove;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-delay: 0s;
}

/* Fix Safari overflow issue */
html,
body {
  overflow-x: hidden;
  position: relative;
  height: 100%;
}

a:link {
  color: var(--accent);
  text-decoration: none;
}

a:visited {
  color: var(--accent2);
}

b {
  font-weight: 400;
  color: var(--accent);
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 50px;
  padding: 5px;
  background-color: black;
  font-family: monospace;
}

.hidden {
  opacity: 0;
  transition: all 1s;
  transition-delay: 150ms;
  filter: blur(3px);
}

.unhidden {
  opacity: 1;
  filter: none;
}

.mainNav {
  position: fixed;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  padding: 0px 40px;
  color: var(--text);
  background-color: var(--nav-color);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  font-size: 2rem;
  animation-name: navAnimation;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  z-index: 2;
}

.logoContainer {
  display: flex;
  height: 50px;
}

.logoContainer > a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
}

#logo {
  height: 80%;
  fill: var(--accent);
}

.logoContainer > i {
  display: flex;
  align-self: center;
}

.buttonsContainer {
  display: flex;
  gap: 40px;
  transition: 500ms;
}

.buttonsContainer.active {
  transform: translate(0%);
}

.iconLinks {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.textLinks {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
}

.textLinks > a {
  padding-bottom: 10px;
  padding-top: 10px;
}

.iconLinks > a,
.textLinks > a {
  position: relative;
  color: inherit;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: 250ms;
}

.iconLinks > button {
  position: relative;
  background-color: transparent;
  border: none;
  color: var(--text);
  font-size: 30px;
  cursor: pointer;
}

.iconLinks > a::after,
.iconLinks > button::after,
.textLinks > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: var(--text);
  scale: 0;
  transform-origin: 0% 50%;
  transition: ease-in-out 250ms;
}

.iconLinks > a:hover::after,
.iconLinks > button:hover::after,
.textLinks > a:hover::after {
  scale: 1;
}

.burger {
  display: none;
  transition: ease-in-out 250ms;
  background-color: transparent;
  border: none;
  color: var(--text);
  font-size: 30px;
  cursor: pointer;
}

.burger:active {
  color: var(--accent);
}

#apps,
#contact {
  margin-top: 200px;
}

header {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hello {
  opacity: 0;
  font-size: 6rem;
  font-weight: 400;
  color: var(--accent);
  font-family: "Pacifico", cursive;
  line-height: 1;
  animation-name: opacity;
  animation-duration: 1.5s;
  animation-delay: 1.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 3rem;
  width: 500px;
  opacity: 0;
  animation-name: opacity;
  animation-duration: 1.5s;
  animation-delay: 2.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

header > h2 {
  font-weight: 400;
  color: gray;
  opacity: 0;
  animation-name: opacity;
  animation-duration: 1.5s;
  animation-delay: 3.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.intervalWrapper {
  position: relative;
  margin: 1rem;
  width: 250px;
  opacity: 0;
  animation-name: opacity;
  animation-duration: 1.5s;
  animation-delay: 4.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  transition: 250ms;
}

.interval {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: ease-in-out 250ms;
  color: transparent;
  text-align: center;
}

.show {
  color: var(--text);
}

.arrowDown {
  position: absolute;
  bottom: 5px;
  border: none;
  cursor: pointer;
  padding: 10px;
  opacity: 0;
  animation-name: opacity;
  animation-duration: 2s;
  animation-delay: 4.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

a i {
  color: white;
}

main {
  margin-top: 105vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 40px;
}

main article {
  padding: 0 20px;
  max-width: 720px;
}

main article p {
  color: var(--read-text);
  /* font-size: 0.9rem; */
}

article h2 {
  text-align: center;
  margin-bottom: 40px;
}

.photoContainer {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 10px;
}

.photoContainer img {
  height: 200px;
  border-radius: 20px;
  transition: 250ms;
  box-shadow: 6px 6px 0px 0px var(--accent);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

main ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}

main ul li {
  list-style: none;
}

.appGallery {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.appGallery a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  width: 300px;
  overflow: hidden;
  color: white;
  text-decoration: none;
  transition: ease-in-out 250ms;
}

.appGallery a img {
  width: 300px;
}

.appGallery a:hover {
  scale: 1.1;
}

.appWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.flexCenter a {
  color: var(--accent);
}

.flexCenter a:visited {
  -moz-column-rule-color: var(--accent2);
       column-rule-color: var(--accent2);
}

.flexCenter {
  display: flex;
  text-align: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

@media only screen and (max-width: 1000px) {
  .burger {
    display: block;
  }
  .buttonsContainer {
    position: absolute;
    right: 0;
    top: 50px;
    transform: translate(100%);
    height: calc(100vh - 50px);
    width: 60vw;
    font-size: 2rem;
    background-color: var(--nav-color);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
  }
  .buttonsContainer,
  .textLinks {
    align-items: center;
    font-size: inherit;
    flex-direction: column;
    justify-content: center;
  }
  .textLinks,
  .iconLinks {
    font-size: 2.2rem;
  }
  .buttonsContainer > button {
    background-color: transparent;
    border: none;
    color: var(--text);
    font-size: 30px;
    display: block;
  }
  .arrowDown {
    scale: 1.5;
  }
  article > .photoContainer {
    flex-direction: column;
  }
  main > article p {
    text-align: justify;
  }
}
@media only screen and (max-width: 760px) {
  .mainNav {
    padding: 0 20px;
  }
  .buttonsContainer {
    width: 100vw;
  }
}
@keyframes bgMove {
  0% {
    background-size: 120px 120px;
  }
  100% {
    background-size: 60px 60px;
  }
}
@keyframes opacity {
  0% {
    opacity: 0%;
  }
  100% {
    opacity: 100%;
  }
}
@keyframes navAnimation {
  0% {
    opacity: 0;
    top: -50px;
    border-radius: 50px;
  }
  100% {
    opacity: 100;
    top: 0;
    border-radius: 0;
  }
}/*# sourceMappingURL=main.css.map */