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

html {
  scroll-behavior: smooth;
}

body {
  background-color: #1c1c1c;
  font-family: "Iceland", cursive;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.5rem 0.5rem 1.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.48);
  background-color: transparent;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  height: 5rem;
  width: 100%;
  position: fixed;
  z-index: 99;
}
.navbar .navbar-img img {
  height: 3.5rem;
}
.navbar .navbar-menu {
  display: flex;
}
.navbar .navbar-menu ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.navbar .navbar-menu ul a {
  font-size: 21px;
  color: #e1e1e1;
  cursor: pointer;
  position: relative;
  border: none;
  background: none;
  text-transform: uppercase;
  font-family: "Iceland", cursive;
  transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-duration: 400ms;
  transition-property: color;
  text-decoration: none;
}
.navbar .navbar-menu ul a:focus, .navbar .navbar-menu ul a:hover {
  color: #297FEA;
}
.navbar .navbar-menu ul a:focus:after, .navbar .navbar-menu ul a:hover:after {
  width: 100%;
  left: 0%;
}
.navbar .navbar-menu ul a:after {
  content: "";
  pointer-events: none;
  bottom: -2px;
  left: 50%;
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: #297FEA;
  transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-duration: 400ms;
  transition-property: width, left;
}

.main {
  height: calc(100vh + 0.5rem);
  padding-left: 2rem;
  display: flex;
  justify-content: space-around;
  padding-right: 2rem;
}
.main .main-left {
  display: flex;
  flex-direction: column;
  align-self: center;
}
.main .main-left .main-text {
  display: flex;
  flex-direction: column;
  color: white;
  font-size: 50px;
  line-height: 4rem;
}
.main .main-left .main-text #primary {
  color: #297FEA;
  font-size: 110px;
}
.main .main-left .main-text #secondary {
  padding-left: 0.4rem;
}
.main .main-left .main-btns {
  margin: 1rem 0rem 1rem 0.8rem;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
  gap: 1.5rem;
}
.main .main-left .main-btns img {
  height: 2.5rem;
}
.main .main-left .main-btns .btn {
  padding: 5px 25px;
  border: unset;
  border-radius: 15px;
  color: white;
  z-index: 1;
  background: transparent;
  position: relative;
  font-weight: 1000;
  font-size: 17px;
  border: 1px solid rgba(255, 255, 255, 0.435);
  box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  transition: all 250ms;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 5px;
}
.main .main-left .main-btns .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  border-radius: 15px;
  background-color: #297FEA;
  z-index: -1;
  box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  transition: all 250ms;
}
.main .main-left .main-btns .btn:hover {
  color: white;
  border: 1px solid rgb(41, 127, 234);
}
.main .main-left .main-btns .btn:hover::before {
  width: 100%;
  border: none;
}
.main .main-right {
  display: flex;
  align-self: center;
  justify-content: center;
}
.main .main-right img {
  height: 45rem;
  border-radius: 55% 45% 43% 57%/45% 41% 59% 55%;
  box-shadow: 0px 0px 10px 5px #297FEA;
  transition: all 0.5s;
}
.main .main-right img:hover {
  border-radius: 55% 45% 31% 69%/55% 27% 73% 45%;
}

.skills {
  background-color: #161616;
  height: 80vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.skills h1 {
  color: #297FEA;
  position: relative;
  bottom: 8rem;
  font-size: 40px;
  text-transform: uppercase;
}
.skills .skills__container {
  display: flex;
  justify-content: space-around;
  width: 70%;
}
.skills .skills__container .skills__container__left {
  gap: 1rem;
  display: flex;
  flex-flow: wrap;
}
.skills .skills__container .skills__container__left img {
  height: 8rem;
  border-radius: 10px;
  padding: 15px;
  background-color: #222222;
  filter: saturate(0%);
  cursor: pointer;
  transition: all 0.5s;
}
.skills .skills__container .skills__container__left img:hover {
  filter: none;
  background-color: #ffffff;
}
.skills .skills__container .skills__container__right {
  text-align: center;
  color: white;
  font-size: 35px;
  width: 50%;
  padding: 0rem 1rem;
  height: 17rem;
}
.skills .skills__container .skills__container__right h5 {
  color: #297FEA;
  font-size: 40px;
  display: none;
}
.skills .skills__container .skills__container__right h6 {
  color: #e1e1e1;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.projects {
  background-image: url(/imgs/wp5679143-black-oled-4k-wallpapers.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.projects .projectsAll {
  margin-top: 3rem;
}
.projects .projects-text {
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.projects .projects-text #textPrincipal {
  color: #297FEA;
  text-transform: uppercase;
  font-size: 40px;
}
.projects .projects-text a {
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border-radius: 0.6em;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-self: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  padding: 1em 2.5em;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  border: 3px solid #297FEA;
  background-image: linear-gradient(45deg, #297FEA 50%, transparent 50%);
  background-position: 100%;
  background-size: 400%;
  transition: background 300ms ease-in-out;
}
.projects .projects-text a:hover {
  background-position: 0;
}
.projects .projectsOn {
  display: flex;
  font-family: "Lucida Sans", Geneva, Verdana, sans-serif;
  gap: 2.5rem;
}
.projects .projectsOn img {
  height: 15rem;
  width: 25rem;
  border-radius: 15px;
  cursor: pointer;
  transition: filter 200ms ease-in-out;
}
.projects .projectsOn img:hover {
  filter: brightness(70%);
}
.projects .projectsOn .project-layout {
  font-size: 15px;
  background-color: #191919;
  padding: 3rem 1.5rem;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.projects .projectsOn .project-layout h2 {
  position: relative;
  bottom: 1.5rem;
  color: white;
}
.projects .projectsOn .project-layout .text {
  display: flex;
  justify-content: space-between;
  color: white;
  position: relative;
  top: 1.5rem;
}
.projects .projectsOn .project-layout .text a {
  background-color: transparent;
  border-radius: 0.6em;
  color: #fff;
  cursor: pointer;
  margin: 10px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  gap: 10px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  border: 3px solid #297FEA;
  background-image: linear-gradient(45deg, #297FEA 50%, transparent 50%);
  background-position: 100%;
  background-size: 400%;
  transition: background 300ms ease-in-out;
}
.projects .projectsOn .project-layout .text a:hover {
  background-position: 0;
}
.projects .creator {
  color: white;
  position: relative;
  top: 19rem;
  font-size: 25px;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}
.projects .creator a {
  color: #297FEA;
  text-decoration: none;
  transition: all 0.5s;
}
.projects .creator a:hover {
  color: #52a0ff;
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */