* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  font-family: "Roboto", sans-serif;
}

.index-night-mode {
  background: rgb(15, 0, 7);
  background: linear-gradient(195deg, rgb(15, 0, 7) 20%, rgb(121, 9, 113) 35%, rgb(27, 0, 54) 63%);
  color: white;
}

@keyframes shadefilter {
  0% {
    filter: brightness(100%);
  }
  100% {
    filter: brightness(80%);
  }
}
@keyframes movebg {
  0% {
    top: -50px;
  }
  100% {
    top: 0px;
  }
}
@keyframes slide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  color: black;
  width: 100vw;
  overflow-x: hidden;
}

.contoured-text {
  color: black;
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 1px 1px 0 white;
}

.blurred-image {
  filter: blur(2px);
}

.introduction .text {
  width: 80%;
}
.introduction .text p {
  font-family: "Jost", sans-serif;
}

.techIcons {
  height: 80px;
}

section .decor {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 30px;
  background-color: #B1975B;
  opacity: 0.8;
  z-index: -2;
}

#decorProject {
  right: 100px;
  transform: rotate(15deg);
  animation: slideupdown 5s infinite alternate ease-in-out;
}

#decorSkills {
  left: 100px;
  transform: rotate(-15deg);
  animation: slideupdown 5s infinite alternate ease-in-out;
  animation-delay: 2s;
}

@keyframes slideupdown {
  0% {
    margin-top: 0px;
  }
  100% {
    margin-top: 150px;
  }
}
.details h2 {
  margin-top: 25px;
  margin-bottom: 25px;
  width: 90vw;
  font-family: "Russo One", sans-serif;
  font-size: xx-large;
  border-bottom: none;
  border-right: none;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  padding: 2% 0 2% 4%;
  align-items: center;
  text-align: center;
}

.border-h2 {
  border: solid 1px #28064f;
  border-left: solid 5px;
}

.reversed-h2 {
  border: solid 1px #B1975B;
  border-left: solid 5px;
}

.skills {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.skills .icon-group {
  margin-top: 30px;
  margin-bottom: 30px;
}
.skills ul {
  list-style-type: none;
  text-align: center;
  font-weight: 800;
}

h3 {
  border: none;
  color: gray;
  font-size: larger;
  font-family: "Russo One", sans-serif;
  display: flex;
  justify-content: start;
  text-align: center;
}

.icon-group {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 30px;
}

.languages {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 50%;
  gap: 15px;
}
.languages .lang {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.languages .flag {
  height: 50px;
}

.introduction {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.introduction .text {
  margin-top: 20px;
  font-size: large;
}

.contacts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.contacts .contactChoice {
  margin-top: 20px;
  width: 100%;
  display: flex;
  justify-content: space-around;
}
.contacts img {
  width: 30px;
  margin: 5px;
}
.contacts a {
  color: black;
}
.contacts div {
  gap: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.contacts .contactInfo {
  display: flex;
  flex-direction: column;
}
.contacts .contactForm {
  display: flex;
  width: 35vw;
  min-width: 300px;
  flex-direction: column;
  gap: 10px;
  padding: 20px 10px 20px 10px;
  background-color: #CFA2FE;
  border-radius: 20px;
  border: solid 1px #28064f;
  border-right: solid 3px;
}
.contacts .contactForm input {
  font-size: 1.1rem;
  border-radius: 3px;
}
.contacts .contactForm #email, .contacts .contactForm #subject {
  height: 30px;
}
.contacts .contactForm textarea {
  font-size: 1.1rem;
  font-family: "Roboto", sans-serif;
  border-radius: 3px;
  min-height: 200px;
  padding: 5px;
}
.contacts .contactForm input[type=submit] {
  width: 200px;
  align-self: center;
  background-color: #28064f;
  color: #B1975B;
}
.contacts .contactForm input[type=submit]:active {
  background-color: #072A5D;
}
.contacts .flexCol {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
}

html::-webkit-scrollbar {
  width: 10px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
  width: 10px;
  background-color: rgba(71, 71, 71, 0.8);
  border-radius: 10px;
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer a {
  color: rgb(255, 255, 255);
}

.legal {
  margin-top: 15px;
  height: 100dvh;
  width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#msg {
  display: flex;
  align-items: center;
}

.loader {
  border: 5px solid #f3f3f3; /* Light grey */
  border-top: 5px solid #000; /* Blue */
  border-radius: 50%;
  width: 25px;
  height: 25px;
  animation: spin 2s linear infinite;
}

.align-start {
  display: flex;
  justify-content: start;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (orientation: portrait) or (max-width: 1100px) {
  body {
    width: 100vw;
    overflow-x: hidden;
  }
  .skills {
    margin-top: 40px;
  }
  main .name-card .front-card .name-title h1 {
    font-size: 2rem;
  }
  main .name-card .front-card .name-title .name {
    font-style: italic;
    font-size: 1rem;
  }
  .details .title {
    font-size: 20px;
  }
  h3 {
    font-size: 15px;
  }
  footer .copyright {
    font-size: 15px;
  }
  .contacts .sm-flexCol {
    margin-top: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
}
@media (orientation: landscape) and (min-height: 1200px) {
  nav {
    position: sticky;
    z-index: 2;
    top: 0;
    display: flex;
    justify-content: space-around;
    width: 100vw;
    height: 40px;
    background-color: #28064f;
  }
  nav .burgerIcone {
    background-color: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 30px;
    left: 10px;
    visibility: hidden;
    display: none;
    width: 100%;
  }
  nav .burgerIcone img {
    height: 30px;
    width: 30px;
  }
  nav .burgerIcone img:hover {
    border: solid #CFA2FE 2px;
    border-radius: 25px;
    justify-content: center;
    align-items: center;
    width: 30px;
    cursor: pointer;
  }
  nav .menu {
    width: 100vw;
    height: 40px;
    display: flex;
    justify-content: space-around;
    font-size: 2vw;
  }
  nav .menu a {
    color: black;
  }
  nav .menu div {
    display: flex;
    align-self: center;
    flex-direction: row;
    gap: 2vw;
    margin: 10px;
    font-family: "Orbitron", sans-serif;
    font-family: "Russo One", sans-serif;
  }
  nav .menu div .nav-left {
    justify-content: space-around;
    padding-left: 50px;
  }
  nav .menu div .title {
    display: flex;
    justify-content: center;
    width: 80px;
    cursor: pointer;
  }
  nav .menu div .home {
    width: 10px;
  }
  nav .menu div .home img {
    height: 30px;
  }
  nav .menu div .home img:hover {
    height: 35px;
  }
}
@media (orientation: landscape) or (min-width: 1950px) {
  .menu div .title, .reversed-menu div .title {
    font-size: 18px;
  }
}
@media (orientation: landscape) and (max-width: 1000px) {
  .menu div, .reversed-menu div {
    gap: 1rem !important;
  }
}
/* HTML: <div class="loader"></div> */
.waiting {
  width: 50px;
  height: 30px;
  --g: radial-gradient(farthest-side,#0000 calc(95% - 3px),#535353 calc(100% - 3px) 98%,#0000 101%) no-repeat;
  background: var(--g), var(--g), var(--g);
  background-size: 15px 15px;
  animation: l9 1s infinite alternate;
}

@keyframes l9 {
  0% {
    background-position: 0 50%, 50% 50%, 100% 50%;
  }
  20% {
    background-position: 0 0, 50% 50%, 100% 50%;
  }
  40% {
    background-position: 0 100%, 50% 0, 100% 50%;
  }
  60% {
    background-position: 0 50%, 50% 100%, 100% 0;
  }
  80% {
    background-position: 0 50%, 50% 50%, 100% 100%;
  }
  100% {
    background-position: 0 50%, 50% 50%, 100% 50%;
  }
}/*# sourceMappingURL=styles.css.map */