:root {
  --bg: #5cdb95;
  --text: #05386b;
  --text-dark: #101010;
  --text-light: #fff;
  --accent: #05386b;
  --accent-hover: #4100f3;
  --portal-light: #9efff4;
  --portal-medium: #33d4c9;
  --portal-dark: #2cb3a9;
  --nav-height: 100px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  width: 100vw;
  position: relative;
  background-color: #1a2b2f;
  background-color: #244d47;
  color: var(--text-light);
  line-height: 1.6;
  font-family: "bookmania", serif;
  height: 200vh;
}

a,
a:visited {
  color: rgb(182, 0, 0);
  text-decoration: none;
}

.boxed-text,
.quote {
  font-family: "ff-scala-sans-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.boxed-text {
  border-top: 2px solid black;
  border-bottom: 2px solid black;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  padding: 1rem;
  position: relative;
  margin-top: 50px;
  margin-bottom: 75px;
  background-color: rgba(0, 0, 0, 0.3);
}

.boxed-text .triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 20px 20px 0; /* Adjust size of the triangle */
  border-color: transparent black transparent transparent; /* Right border color is the color of the triangle */
  position: absolute;
  top: 100%;
  left: -1px;
}

.boxed-text .triangle.tl {
  top: -20px;
  left: -1px;
  border-color: transparent transparent black transparent;
  transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
}

.boxed-text .triangle.tr {
  top: -20px;
  right: -1px;
  left: initial;
  border-color: transparent transparent black transparent;
}

.boxed-text .triangle.br {
  top: 100%;
  right: -1px;
  left: initial;
  border-color: transparent transparent black transparent;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}

ul {
  list-style-type: none;
}

.heading {
  font-family: "mrs-eaves-roman-small-caps", serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  width: fit-content;
}

.heading::after {
  content: "";
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  width: 100%;
  height: 3px;
  background-color: white;
}

/* GENERAL */

/* HEADER */
header {
  position: fixed;
  width: 100vw;
  display: flex;
  justify-content: space-between;
  z-index: 100;
}

nav {
  width: 90vw;
  height: var(--nav-height);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a,
.logo {
  width: 100px;
  position: relative;
}

.logo svg path {
  fill: var(--text-light) !important;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
}

.logo:hover svg path {
  fill: var(--portal-light) !important;
}

.menu-open {
  width: 50px;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.menu-open:hover .dice {
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
}

.dice {
  fill: var(--text-light) !important;
  transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -ms-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
}

.menu-open:hover .dice .cls-1 {
  fill: var(--portal-light) !important;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
}

.dice .cls-1 {
  fill: var(--text-light) !important;
}

.menu-close {
  position: relative;
  height: 50px;
  margin-top: 1rem;
  margin-left: 1rem;
  cursor: pointer;
}

.sword {
  position: absolute;
  height: 50px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.sword .cls-1,
.sword .cls-2,
.sword .cls-3 {
  stroke: rgb(136, 0, 0) !important;
  stroke-width: 0.5px !important;
}

.sword line,
.sword .not-blade,
.sword .grip {
  fill: rgb(136, 0, 0) !important;
}

.blade {
  fill: white !important;
}

.sword-left {
  opacity: 0;
  left: 75px;
  transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
}

.menu.open .sword-left {
  animation: swingLeft 0.6s ease forwards;
  -webkit-animation: swingLeft 0.6s ease forwards;
  animation-delay: 0.2s;
}

.sword-right {
  opacity: 0;
  transform: rotate(180deg);
}

.menu.open .sword-right {
  animation: swingRight 0.6s ease forwards;
  -webkit-animation: swingRight 0.6s ease forwards;
  animation-delay: 0.2s;
}

@keyframes swingLeft {
  from {
    opacity: 0;
    left: 75px;
    transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
  }

  to {
    opacity: 1;
    left: 0;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
  }
}

@keyframes swingRight {
  from {
    opacity: 0;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
  }

  to {
    opacity: 1;
    transform: rotate(279deg);
    -webkit-transform: rotate(279deg);
    -moz-transform: rotate(279deg);
    -ms-transform: rotate(279deg);
    -o-transform: rotate(279deg);
  }
}

.menu {
  margin-right: -30rem;
}

.menu.open {
  margin-right: 0;
}

.menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: min(30rem, 90vw);
  height: 100vh;
  position: fixed;
  right: 0;
  top: 0;
  background-color: antiquewhite;
  justify-content: space-between;
  transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  -moz-transition: all ease 0.2s;
  -ms-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  box-shadow: -5px 1px 10px rgba(0, 0, 0, 0.2);
}

.menu .menu-ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem;
  margin-bottom: 2rem;
}

.menu .menu-ul li {
  position: relative;
  display: flex;
  align-items: center;
}

.menu .menu-ul li a {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: bold;
  display: flex;
  align-items: center;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  z-index: 1000;
  position: relative;
  width: 100%;
}

.menu .menu-ul li a:hover {
  color: antiquewhite !important;
}

.menu .menu-ul li .link-bg {
  position: absolute;
  top: 0;
  left: -1rem;
  width: 0;
  height: 100%;
  background-color: rgb(182, 0, 0);
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
}

.menu .menu-ul li:hover .link-bg {
  width: calc(100% + 2rem);
}

.menu-footer ul {
  height: calc(50px + 2rem);
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  /* padding-left: 1rem; */
  background-color: rgb(182, 0, 0);
  font-size: 2rem;
}

.menu-footer a {
  color: antiquewhite !important;
}

.social {
  fill: var(--accent);
  background-color: wheat;
}

/* Cursor */
#cursor {
  pointer-events: none;
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  /* background-color: var(--accent); */
  z-index: 1000;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: background-color ease 0.2s, width ease 0.2s, height ease 0.2s;
  -webkit-transition: background-color ease 0.2s, width ease 0.2s,
    height ease 0.2s;
  -moz-transition: background-color ease 0.2s, width ease 0.2s, height ease 0.2s;
  -ms-transition: background-color ease 0.2s, width ease 0.2s, height ease 0.2s;
  -o-transition: background-color ease 0.2s, width ease 0.2s, height ease 0.2s;
}

#cursor.link-hover {
  /* background-color: var(--accent-hover); */
  /* outline: 3px solid var(--accent-hover);
  outline-offset: 5px; */
  width: 15px;
  height: 15px;
}

/* Splash */

.splash {
  width: 100vw;
  height: 100vh;
  background-image: url("../assets/bg.png");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  position: relative;
  /* mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 50%,
    transparent 100%
  ); */
}

.splash svg {
  width: min(450px, 90vw);
}

.splash .transparent {
  position: absolute;
  background: linear-gradient(rgba(51, 51, 51, 0) 0%, rgb(36, 77, 71) 100%);
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 5vh;
  transition: all ease 0.1s;
  -webkit-transition: all ease 0.1s;
  -moz-transition: all ease 0.1s;
  -ms-transition: all ease 0.1s;
  -o-transition: all ease 0.1s;
}

.cta {
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--portal-light);
  padding: 1rem;
  max-width: 90vw;
  margin: 0 auto;
  margin-top: -1rem;
  position: relative;
}

.cta::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 90%;
  width: 0;
  height: 0;
  border: 15px solid;
  border-color: rgba(0, 0, 0, 0.7) rgba(0, 0, 0, 0.7) transparent transparent;
}

.cta .wizard {
  position: absolute;
  top: 100%;
  left: 90%;
  width: 250px;
  animation: float 5s ease-in-out forwards infinite;
  -webkit-animation: float 5s ease-in-out forwards infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(5%);
  }
}

.cta .wizard svg {
  width: 250px;
}

.btn {
  color: var(--portal-light) !important;
  position: absolute;
  padding: 7px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  border: 1px solid var(--portal-light);
  bottom: 7.5rem;
}

.btn:hover .btn-horizontal {
  transform: scaleY(0);
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
}
.btn:hover .btn-vertical {
  transform: scaleX(0);
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
}

.btn-horizontal,
.btn-vertical {
  position: absolute;
  border: 1px solid var(--portal-light);
  z-index: -10;
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  -ms-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
}

.btn-horizontal {
  width: calc(100% + 1rem);
  height: 100%;
  /* padding: 1rem 2rem; */
  background-color: rgba(0, 0, 0, 0.2);
}

.btn-vertical {
  width: 100%;
  height: calc(100% + 1rem);
  background-color: rgba(0, 0, 0, 0.4);
}

.circle {
  transform-box: fill-box;
  transform-origin: center;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  animation: spin ease 60s forwards infinite;
  -webkit-animation: spin ease 60s forwards infinite;
}

.lightning {
  transition: all ease-out 0.5s;
  -webkit-transition: all ease-out 0.5s;
  -moz-transition: all ease-out 0.5s;
  -ms-transition: all ease-out 0.5s;
  -o-transition: all ease-out 0.5s;
}

.teleport {
  opacity: 0;
  width: 100vw;
  height: 100vh;
  position: fixed;
  background: radial-gradient(
    circle,
    var(--portal-dark) 0%,
    var(--portal-medium) 100%
  );
  z-index: -200;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.4s, z-index 1s;
  -webkit-transition: opacity 0.4s, z-index 1s;
  -moz-transition: opacity 0.4s, z-index 1s;
  -ms-transition: opacity 0.4s, z-index 1s;
  -o-transition: opacity 0.4s, z-index 1s;
}

.teleport svg {
  width: 100%;
  height: 100%;
  animation: spin ease 45s forwards infinite;
  -webkit-animation: spin ease 45s forwards infinite;
  fill: url(#myGradient);
  transition-delay: 0.5s;
  transition: all ease 2s;
  -webkit-transition: all ease 2s;
  -moz-transition: all ease 2s;
  -ms-transition: all ease 2s;
  -o-transition: all ease 2s;
}

.teleport.show {
  opacity: 1;
  z-index: 1000;
}

.teleport.show svg {
  width: 150%;
  height: 150%;
}

#about {
  width: 90vw;
  min-height: 100vh;
  margin: 0 auto;
  padding-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* .inner-bio {
  display: flex;
  gap: 1rem;
} */

.inner-bio p {
  text-align: justify;
}

.inner-bio img {
  width: 600px;
  height: 600px;
  object-fit: cover;
  display: block;
  float: right;
  margin: 25px;
  margin-top: -25px;
}

.wrap {
  float: right;
  margin: 5px;
}

.bio {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* .bio p {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
} */

.proficiencies {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1000px;
  gap: 2rem;
}

.proficiencies .heading {
  width: 80%;
}

.list {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.portal {
  cursor: pointer;
}

#projects {
  width: 100vw;
  min-height: 100vh;
  padding-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.inner-projects .boxed-text {
  width: 90vw;
  margin-left: auto;
  margin-right: auto;
}

.projects-container {
  /* background-image: url("https://cdna.artstation.com/p/assets/images/images/060/104/398/large/armando-rosado-jr-stonetilepracticeupdate4x4.jpg?1677824159"); */
  padding: 5vh 5vw;
  position: relative;
}

.projects-container::before {
  content: "";
  position: absolute;
  background: linear-gradient(rgb(36, 77, 71) 0%, rgba(51, 51, 51, 0) 100%);
  top: 0;
  left: 0;
  width: 100vw;
  height: 5vh;
}

.projects-container::after {
  content: "";
  position: absolute;
  background: linear-gradient(rgba(51, 51, 51, 0) 0%, rgb(36, 77, 71) 100%);
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 5vh;
}

#projects .heading {
  text-align: center;
  margin-bottom: 2rem;
}

#projects .boxed-text {
  text-align: justify;
  /* margin-bottom: 2rem; */
}

.projects-container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.project {
  position: relative;
  height: 100%;
  background-size: cover;
  background-color: antiquewhite;
  padding: 2rem;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.project h2 {
  border-top: none;
  padding: 0.5rem;
  color: rgb(182, 0, 0);
  font-family: "mrs-eaves-roman-small-caps", serif;
  width: fit-content;
  position: relative;
}

/* .project h2::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: rgb(250, 225, 0);
  bottom: 0;
  left: 0.5rem;
} */

.project p {
  border-top: none;
  padding: 0.5rem;
  text-align: justify;
  position: relative;
  color: #101010;
}

.project-image img {
  /* mask-image: linear-gradient(rgba(51, 51, 51, 0) 0%, rgb(36, 77, 71) 100%); */
  width: 100%;
  display: block;
  height: 100%;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.project-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.project-btn {
  color: rgb(182, 0, 0) !important;
  padding: 7px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  border: 1px solid rgb(182, 0, 0);
  position: relative;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
}

.project-btn:hover {
  background-color: rgb(182, 0, 0);
  color: antiquewhite !important;
}

.project-btn:hover .project-btn-horizontal {
  transform: scaleY(0);
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
}
.project-btn:hover .project-btn-vertical {
  transform: scaleX(0);
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
}

.project-btn-horizontal,
.project-btn-vertical {
  position: absolute;
  border: 1px solid rgb(182, 0, 0);
  z-index: -10;
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  -ms-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
}

.project-btn-horizontal {
  width: calc(100% + 1rem);
  height: 80%;
  /* padding: 1rem 2rem; */
  /* background-color: rgba(0, 0, 0, 0.2); */
}

.project-btn-vertical {
  width: 100%;
  height: calc(100% + 1rem);
  /* background-color: rgba(0, 0, 0, 0.4); */
}

.round-link {
  display: flex;
  font-size: 2rem;
  color: rgb(182, 0, 0) !important;
  transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  -moz-transition: all ease 0.2s;
  -ms-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
}

.round-link:hover {
  color: rgb(136, 0, 0) !important;
}

.stack {
  display: flex;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}

#contact {
  width: 100vw;
  min-height: 100vh;
  margin: 0 auto;
  padding-top: 5rem;
}

#contact .boxed-text {
  width: 90vw;
  margin-left: auto;
  margin-right: auto;
}

.inner-contact {
  width: 100vw;
  min-height: 80vh;
  background-image: url("../assets/contact_bg.png");
  background-size: cover;
  position: relative;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  padding: 5rem;
}

.inner-contact .boxed-text {
  width: 80vw !important;
  background-color: rgba(62, 18, 28, 0.7);
}

.inner-contact .transparent {
  position: absolute;
  background: linear-gradient(rgb(36, 77, 71) 0%, rgba(51, 51, 51, 0) 100%);
  top: 0;
  left: 0;
  width: 100vw;
  height: 5vh;
  transition: all ease 0.1s;
  -webkit-transition: all ease 0.1s;
  -moz-transition: all ease 0.1s;
  -ms-transition: all ease 0.1s;
  -o-transition: all ease 0.1s;
}

.form {
  position: relative;
  display: block;
  width: 80vw;
  height: 80%;
  background-color: antiquewhite;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  padding: 2rem 7.5vw;
  display: flex;
  gap: 3rem;
  justify-content: space-between;
  color: rgb(182, 0, 0);
}

.form a {
  color: rgb(182, 0, 0) !important;
}

.old-school {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: justify;
}

.old-school .links {
  display: flex;
  /* justify-content: space-evenly; */
  gap: 5rem;
}

.email,
.phone {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-wizard {
  height: 80%;
  max-height: 500px;
  position: absolute;
  right: -5vw;
  bottom: 0%;
  transition: all ease 0.3s;
  transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  z-index: 2;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
}

.form form {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  gap: 1rem;
  z-index: 3;
}

input,
textarea,
button {
  padding: 1rem;
  font-family: "ff-scala-sans-pro", sans-serif;
  resize: none;
}

input,
textarea {
  background-color: antiquewhite;
  border: 2px solid rgb(182, 0, 0);
  outline: none;
}
textarea::placeholder,
input::placeholder {
  color: rgb(182, 0, 0);
}

button {
  position: relative;
  z-index: 1;
}

button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.form button {
  border-color: rgb(182, 0, 0);
  color: rgb(182, 0, 0);
  background-color: antiquewhite;
}

button {
  display: block;
  font-family: sans-serif;
  text-decoration: none;
  color: #333;
  border: 2px solid #333;
  letter-spacing: 2px;
  text-align: center;
  position: relative;
  transition: all 0.35s;
  cursor: pointer;
}

button span {
  position: relative;
  z-index: 2;
}

button:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgb(182, 0, 0);
  transition: all 0.35s;
}

button:hover {
  color: #fff;
}

button:hover:after {
  width: 100%;
}

.success {
  background-color: antiquewhite;

  height: 50%;
  background-size: contain;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  position: relative;
}

.success::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/07cddcde-ce01-486c-8984-27dbb542510e/d39z60l-efd78974-8ffd-4c6f-83d1-6a02fd33f2ac.gif?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7InBhdGgiOiJcL2ZcLzA3Y2RkY2RlLWNlMDEtNDg2Yy04OTg0LTI3ZGJiNTQyNTEwZVwvZDM5ejYwbC1lZmQ3ODk3NC04ZmZkLTRjNmYtODNkMS02YTAyZmQzM2YyYWMuZ2lmIn1dXSwiYXVkIjpbInVybjpzZXJ2aWNlOmZpbGUuZG93bmxvYWQiXX0.M-t5OKKxkayXUhHLw13LYMt7DtpDQxV5ejHojTd2ntY");
  mix-blend-mode: darken;
}

.inner-footer {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: antiquewhite;
  gap: 5rem;
  position: relative;
  color: rgb(182, 0, 0);
}

.inner-footer a {
  color: rgb(182, 0, 0);
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
}

.inner-footer .blurb {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.inner-footer .socials ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.inner-footer .btn {
  position: relative;
  bottom: 0;
  color: antiquewhite !important;
  border-color: rgb(182, 0, 0);
  border-width: 0px;
}

.inner-footer .btn:hover {
  color: rgb(182, 0, 0) !important;
  border-width: 1px;
}

.inner-footer .btn-horizontal,
.inner-footer .btn-vertical {
  border-color: rgb(182, 0, 0);
}

.vertical {
  display: block;
  width: 2px;
  height: 3rem;
  background-color: rgb(182, 0, 0);
}

.inner-footer i {
  font-size: 2rem;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
}

.inner-footer i:hover {
  color: rgb(136, 0, 0);
}

@media screen and (max-width: 321px) {
}
@media screen and (max-width: 481px) {
  .project {
    width: 90vw;
  }
  .stack {
    display: none;
  }
  .inner-contact {
    padding: 0rem;
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 600px) {
  .proficiencies {
    grid-template-columns: 1fr;
  }
  .cta .wizard {
    display: none;
  }
}
@media screen and (max-width: 769px) {
}
@media screen and (max-width: 993px) {
  .bio .heading {
    text-align: center;
    width: 100%;
  }
  .inner-bio {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .inner-bio img {
    width: 400px;
    height: 400px;
  }
  .projects-container {
    grid-template-columns: 1fr !important;
  }

  .project-footer {
    justify-content: flex-start;
    gap: 2rem;
  }

  .form {
    flex-direction: column-reverse;
  }

  .form-wizard {
    display: none;
  }

  .old-school {
    width: 100% !important;
  }

  .links {
    text-align: justify;
  }
}

@media screen and (max-width: 1300px) {
  .old-school {
    width: 30vw;
  }

  .old-school .links {
    flex-direction: column;
    gap: 1rem;
  }
}

@media screen and (max-width: 1300px) {
  .projects-container {
    grid-template-columns: 1fr 1fr;
  }
}
