@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Questrial&family=Space+Mono:ital,wght@0,700;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,400;0,500;0,900;1,400;1,500;1,900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

::-webkit-scrollbar {
  width: 4px;
  color: #d62d20;
  transition: all 0.4s ease;
}

::-webkit-scrollbar-thumb {
  background: #d62d20;
  border-radius: 4px;
  width: 4px;
  transition: all 0.4s ease;
}

::-webkit-scrollbar-track {
  background: #101010;
  border-radius: 4px;
  width: 4px;
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

html {
  background: #000000;
}

#loader {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  position: fixed;
  z-index: 100;
  font-family: Nunito Sans;
  background-color: #101010;
  color: #f5f5f5;
  font-size: 70px;
  width: 100%;
}

body {
  user-select: none;
  height: auto;
  overflow-x: hidden;
}

#header,
body {
  width: 100%;
  background: #000000;
}

#header {
  height: 100vh;
  overflow: hidden;
  animation: scale 1.5s ease;
  position: relative;
  display: block;
}

#particles {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100vw;
  background-size: cover;
  background-position: 50% 50%;
  display: block;
  z-index: 1;
}

#navigation-content {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 5;
  background-color: #020202;
  transform: translateY(-200%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#navigation-bar {
  position: fixed;
  height: 100px;
  width: 100%;
  z-index: 3;
  padding: 10px;
  background: transparent;
  overflow: hidden;
}

.menubar {
  position: absolute;
  right: 4%;
  top: 40%;
  cursor: pointer;
  opacity: 0.8;
  transition: all 0.4s ease;
}

.menubar span {
  position: relative;
  background-color: transparent;
  height: 2px;
  width: 20px;
  display: block;
  margin: 6px;
  border-radius: 20px;
}

.menubar .first-span {
  width: 35px;
}

.menubar .first-span:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 50%;
  top: 0;
  right: 0;
  background-color: #f5f5f5;
  transition: all 0.5s ease;
}

.menubar .second-span {
  width: 35px;
}

.menubar .second-span:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 75%;
  top: 0;
  right: 0;
  background-color: #f5f5f5;
  transition: all 0.3s ease;
}

.menubar .third-span {
  width: 35px;
}

.menubar .third-span:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  background-color: #f5f5f5;
  transition: all 0.3s ease;
}

.menubar:hover .first-span:before,
.menubar:hover .second-span:before {
  width: 100%;
}

.menubar:hover {
  opacity: 1;
}

.close-first,
.close-second {
  height: 2px;
  width: 35px;
  background-color: #f5f5f5;
  display: block;
  margin: 4px;
  cursor: pointer;
  padding: 1px;
  border-radius: 20px;
}

.close-first {
  transform: rotate(45deg);
}

.close-second {
  transform: rotate(-45deg);
}

.navigation-close {
  position: absolute;
  top: 6%;
  right: 4%;
  padding: 10px;
  cursor: pointer;
  transition: all.3s ease;
  opacity: 0.8;
}

.navigation-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.logo img {
  width: 50px;
  height: 30px;
  position: absolute;
  top: 5%;
  left: 2.5%;
  opacity: 0.8;
  z-index: 2;
  cursor: pointer;
  transition: all 0.4s ease;
}

.logo img:hover {
  opacity: 1;
}

#navigation-bar img {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 15%;
  left: 2.5%;
  opacity: 0.8;
  transition: all 0.4s ease;
}

#navigation-bar img:hover {
  opacity: 1;
  transform: rotate(-45deg);
}

.header-image img {
  height: 100vh;
  float: right;
}

.header-image {
  float: right;
  height: auto;
  background-size: cover;
  background-position: 50%;
  width: 40%;
  height: 100vh;
}

.header-content {
  height: 100vh;
  width: 100%;
  float: left;
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  color: #f5f5f5;
  font-family: IBM Plex Mono;
  font-weight: 400;
  letter-spacing: 1px;
  flex-direction: column;
  font-size: 50px;
  z-index: 1;
}

.header-content-box {
  z-index: 2;
  text-align: center;
  height: auto;
  padding-right: 60px;
  width: auto;
}

.header-content .firstline {
  z-index: 2;
  font-weight: 700;
  font-family: Nunito Sans;
  font-size: 65px;
  text-shadow: rgba(0, 0, 0, 0.443) 2px 4px 3px;
}

.header-content .secondline {
  z-index: 2;
  font-size: 30px;
  padding-top: 20px;
  font-weight: 500;
  color: hsla(0, 0%, 100%, 0.8);
  text-shadow: rgba(0, 0, 0, 0.443) 2px 4px 3px;
}

.slash {
  animation-name: animateslash;
  animation-duration: 0.8s;
  animation-iteration-count: infinite;
  animation-play-state: running;
}

@keyframes animateslash {
  0% {
    opacity: 1;
    z-index: 2;
  }

  to {
    opacity: 0;
    z-index: 0;
  }
}

@-webkit-keyframes animateslash {
  0% {
    opacity: 1;
    z-index: 2;
  }

  to {
    opacity: 0;
    z-index: 0;
  }
}

.social-media-links {
  height: 100vh;
  position: absolute;
  z-index: 2;
  padding: 60px;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.social-media {
  color: #fff;
  width: 21px;
  opacity: 0.6;
  margin: 8px;
  transition: all 0.4s ease;
}

.social-media:hover {
  opacity: 1;
  transform: scale(1.1);
}

.navigation-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: Nunito Sans;
}

.navigation-links a {
  padding: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 30px;
  opacity: 0.7;
  transition: all 0.4s ease;
}

.navigation-links a:hover {
  opacity: 1;
}

.navigation-links a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: center;
  transform: translate(-50%, -50%);
  align-items: center;
  font-size: 7em;
  font-weight: 700;
  font-family: Space Mono;
  color: hsla(0, 0%, 100%, 0.1);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  letter-spacing: 100px;
  transition: all 0.4s ease;
}

.navigation-links a:hover:before {
  content: attr(data-text);
  opacity: 1;
  letter-spacing: 10px;
}

.contact {
  display: flex;
  position: absolute;
  width: 10%;
  right: 0;
  top: 0;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.contact,
.contact a {
  z-index: 3;
}

.contact img {
  margin: 10px;
  height: 30px;
  opacity: 0.6;
  transition: all 0.4s ease;
}

.contact img:hover {
  opacity: 1;
  transform: scale(1.1);
}

#breaker {
  height: 100%;
  width: 200%;
  background-color: #d62d20;
  opacity: 1;
  animation: breakeranimate 2s linear;
  display: none;
  transition: all 0.4s ease;
  border-radius: 5px;
  z-index: 10;
  position: fixed;
}

@keyframes breakeranimate {
  0% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(0);
  }

  to {
    transform: translateX(100%);
  }
}

.color {
  color: #8f1d14;
  transition: all 0.4s ease;
  font-smooth: always;
}

#about {
  background-color: #101010;
  display: none;
  width: 100%;
  height: auto;
  overflow: hidden;
}

@keyframes scale {
  0% {
    transform: scale(0.6);
  }

  to {
    transform: scale(1);
  }
}

@-webkit-keyframes breakeranimate {
  0% {
    transform: scale(0.6);
  }

  to {
    transform: scale(1);
  }
}

#about-content {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

#about-content,
.about-header {
  align-items: center;
  color: #f5f5f5;
  justify-content: center;
  height: auto;
  width: 100%;
}

.about-header {
  text-align: center;
  font-size: 45px;
  font-family: IBM Plex Mono;
  padding: 60px 10px 30px;
  font-weight: 900;
}

.about-first-paragraph {
  color: #f5f5f5;
  font-size: 20px;
  font-family: Nunito Sans;
  width: 50%;
  padding: 30px;
  font-weight: 400;
}

.about-first-paragraph .color {
  font-size: 40px;
  font-smooth: always;
}

.about-first-line {
  font-size: 35px;
  opacity: 1;
  margin-bottom: 10px;
  display: block;
}

.about-second-line {
  opacity: 0.8;
  font-size: 18px;
  font-weight: 200;
}

.about-main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: auto;
  padding-left: 50px;
  padding-right: 50px;
  flex-direction: row;
}

.about-img img {
  width: 100%;
  height: 380px;
  padding: 30px;
  border-radius: 40px;
}

.about-img {
  width: 550px;
  height: auto;
  padding: 10px 30px 30px;
  border-radius: 40px;
}

#about-content a {
  text-decoration: none;
  font-family: aileron;
  font-weight: 400;
  font-size: 35px;
  color: #d62d20;
  transition: all 0.4s ease;
}
.see-projects a button {
  border: none;
  padding: 10px 20px;
  color: #ffffff;
  background: #000000;
  outline: none;
  font-size: 20px;
  font-family: aileron;
  border-radius: 5px;
  font-weight: 400;
  cursor: pointer;
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid #d62d20;
}
.see-projects {
  margin-top: 20px;
}
.see-projects button:hover {
  background: #d62d20;
  color: #ffffff;
  opacity: 1;
  transform: scale(1.05);
}
.cv {
  padding-top: 20px;
}

.cv a button {
  border: none;
  padding: 10px 20px;
  color: #f5f5f5;
  background: #d62d20;
  outline: none;
  font-size: 20px;
  font-family: aileron;
  border-radius: 4px;
  font-weight: 400;
  cursor: pointer;
  position: relative;
  transition: all 0.4s ease;
}

.cv a button:hover {
  opacity: 1;
  transform: scale(1.05);
}

#services {
  position: relative;
}

.services-heading {
  height: auto;
  width: 100%;
  text-align: center;
  font-size: 45px;
  font-family: IBM Plex Mono;
  color: #f5f5f5;
  padding: 30px 10px;
  font-weight: 900;
}

.about-first-paragraph,
.services-heading {
  align-items: center;
  justify-content: center;
}

.about-first-paragraph {
  display: flex;
  flex-direction: column;
}

.colors {
  color: #f5f5f5;
}

.services-content {
  height: auto;
  width: 100%;
  padding: 2.5%;
}

.service,
.services-content {
  overflow: hidden;
  text-align: center;
}

.service {
  height: 380px;
  width: 28%;
  margin: 1.5%;
  background-color: #191919;
  display: inline-block;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
  border-radius: 10px;
  animation: opacity 1.4s ease;
}

.service-img {
  text-align: center;
}

.service-img img {
  display: inline-block;
  z-index: 2;
  position: relative;
  margin: 20px;
  border-radius: 30%;
  padding: 10px;
  border: 0 solid #d62d20;
  background: #d62d20;
  box-shadow: 0 0 0 0 #d62d20;
  height: 100px;
  transition: all 0.8s ease;
}

.service:hover .service-img img {
  box-shadow: 0 0 0 400px #d62d20;
}

.service-description {
  font-family: Nunito Sans;
  color: #f5f5f5;
  position: relative;
  display: inline-block;
  z-index: 2;
}

.service-description h2 {
  padding: 10px;
  margin: 5px;
  font-weight: 200;
  font-size: 25px;
}

.service-description p {
  padding: 10px;
  font-weight: 200;
  font-size: 16px;
  opacity: 0.8;
}

#skills,
.skills-header {
  width: 100%;
  height: auto;
}

.skills-header {
  text-align: center;
  align-items: center;
  justify-content: center;
  font-size: 45px;
  font-family: IBM Plex Mono;
  color: #f5f5f5;
  padding: 30px 10px;
  font-weight: 900;
}

.skills-content {
  height: auto;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 80px;
}

.skill-html {
  height: auto;
  width: 45%;
  position: relative;
  font-family: Nunito Sans;
  color: #f5f5f5;
  display: inline-block;
  padding: 1.5%;
}

.skill-text {
  width: 80%;
  position: relative;
  height: 50px;
}

.html {
  display: inline-block;
  position: absolute;
  left: 5%;
  top: 30%;
}

.html-prog {
  width: 100%;
  height: 40px;
  border-radius: 10px;
  background: #191919;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.html-progress {
  width: 95%;
}

.html-progress,
.react-progress {
  position: absolute;
  top: 10%;
  left: 1%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  border-radius: 10px;
  background: #d62d20;
}

.react-progress {
  font-family: Nunito Sans;
  width: 90%;
}

.adobe-progress {
  width: 93%;
}

.adobe-progress,
.node-progress {
  position: absolute;
  top: 10%;
  left: 1%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  border-radius: 10px;
  background: #d62d20;
}

.node-progress {
  width: 87%;
}

.db-progress {
  height: 85%;
  width: 94%;
}

.db-progress,
.seo-progress {
  position: absolute;
  top: 10%;
  left: 1%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  border-radius: 10px;
  background: #d62d20;
}

.seo-progress {
  height: 80%;
  width: 80%;
}

.portfolio-header {
  height: auto;
  width: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-size: 45px;
  transition: all 0.4s ease;
  padding: 60px 10px 30px;
  font-weight: 900;
}

.header-caption,
.portfolio-header {
  font-family: IBM Plex Mono;
  color: #f5f5f5;
}

.header-caption {
  opacity: 0.8;
  display: block;
  font-size: 20px;
  padding: 15px 8px 8px;
  font-weight: 400;
}

.portfolio {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 50px 2% 40px 1.5%;
}

.portfolio-text {
  width: 40%;
  padding-left: 1%;
  margin: 160px 1% 1% -40px;
  z-index: 3;
  opacity: 1;
  border-radius: 10px;
  background: #080808;
  padding-top: 10px;
  padding-bottom: 10px;
}

.portfolio-text h2 {
  font-size: 35px;
  font-family: Nunito Sans;
  font-weight: 800;
  padding: 20px;
  color: #d62d20;
  transition: all 0.4s ease;
}

.portfolio-text p {
  padding: 20px;
}

.portfolio-text button,
.portfolio-text p {
  font-size: 16px;
  opacity: 0.8;
  font-family: Nunito Sans;
  font-weight: 200;
}

.portfolio-text button {
  padding: 10px 20px;
  background: transparent;
  color: #ffffff;
  outline: none;
  margin: 20px;
  border: 1.5px solid #d62d20;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
}

.portfolio-text button:before {
  content: "";
  position: absolute;
  width: 0;
  height: 200%;
  transform: rotate(-15deg) translateY(-20px);
  top: 0;
  left: 0;
  z-index: 3;
  background: #d62d20;
  transition: all 0.7s ease;
}

.portfolio-text button:hover {
  opacity: 1;
  color: #f5f5f5;
}

button:hover .index {
  position: relative;
  z-index: 4;
}

.portfolio-text button:hover:before {
  opacity: 1;
  width: 120%;
}

.button {
  text-align: center;
}

.portfolio-image img {
  height: 400px;
  width: 110%;
  position: relative;
}

.portfolio-image {
  height: 400px;
  width: 50%;
  box-shadow:5px 10px 10px rgba(255, 255, 255, 0.1);
}

.portfolio-image img:before {
  content: "";
  height: 100%;
  width: 100%;
  background: #d62d20;
  opacity: 0.1;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
  position: absolute;
  z-index: 2;
}

#portfolio-content {
  width: 100%;
  display: flex;
  height: auto;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

#portfolio {
  display: none;
  overflow-x: hidden;
  background-color: #101010;
}

#portfolio,
.blog-header {
  height: auto;
  width: 100%;
  color: #f5f5f5;
}

.blog-header {
  text-align: center;
  align-items: center;
  justify-content: center;
  font-size: 45px;
  font-family: IBM Plex Mono;
  padding: 60px 10px 30px;
  font-weight: 900;
}

.cursor {
  transition: scale 0.5s ease;
}

.cursor,
.cursor-small {
  height: 50px;
  width: 50px;
  display: block;
  border-radius: 50%;
  border: 1px solid #f5f5f5;
  background: transparent;
  pointer-events: none;
  position: fixed;
  top: -25px;
  left: -25px;
  z-index: 10;
  opacity: 0.6;
}

.cursor-small {
  transition: scale 0.4s ease;
}

#blog {
  background: #101010;
  display: none;
  color: #f5f5f5;
  width: 100%;
  height: auto;
}

.blog-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.blogs {
  height: 420px;
  width: 40%;
  margin: 20px;
  border-radius: 8px;
}

.blogs,
.blogs .img {
  position: relative;
  overflow: hidden;
}

.blogs .img {
  height: 80%;
  width: 100%;
  transition: all 0.65s ease;
}

.blog-date {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #d62d20;
  color: #f5f5f5;
  font-size: 18px;
  text-align: center;
  font-weight: 400;
  font-family: Nunito Sans;
  padding: 3px;
  transition: all 0.4s ease;
  width: 25%;
  height: auto;
}

.blogs .img img {
  height: 100%;
  width: 100%;
  transition: all 0.65s ease;
}

.blog-text {
  height: 80%;
  width: 100%;
  text-align: center;
  vertical-align: center;
  font-family: Nunito Sans;
  color: #f5f5f5;
  background-color: #050505;
  transition: all 0.5s ease;
}

.blog-text h3 {
  font-size: 28px;
  font-weight: 500;
  height: 20%;
  padding: 20px;
  letter-spacing: 1px;
}

.blog-text p {
  font-size: 18px;
  opacity: 0.9;
  font-weight: 400;
  height: 80%;
  padding: 30px;
  letter-spacing: 1px;
}

.blogs:hover .blog-text,
.blogs:hover .img {
  transform: translateY(-70%);
}

.blogs a {
  text-decoration: none;
  color: #f5f5f5;
}

#contact {
  display: none;
  background: #101010;
  position: relative;
}

#contact,
.contact-header {
  height: auto;
  text-align: center;
  width: 100%;
}

.contact-header {
  align-items: center;
  justify-content: center;
  font-size: 45px;
  font-family: IBM Plex Mono;
  color: #f5f5f5;
  padding: 60px 10px 30px;
  font-weight: 900;
}

.contact-header-caption {
  padding: 10px;
  color: #f5f5f5;
  opacity: 0.9;
  font-family: IBM Plex Mono;
  font-size: 18px;
}

.contact-content {
  width: 90%;
  margin: auto;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.contact-info {
  width: 40%;
  height: 500px;
  background: url(../images/contact-back.jpg);
  backdrop-filter: blur(10px);
  background-position: 50%;
  background-size: cover;
  border-radius: 16px;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.contact-info:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #101010;
  opacity: 0.8;
  pointer-events: none;
}

.contact-form {
  height: 550px;
  padding-right: 40px;
  width: 60%;
  display: flex;
}

.contact-form,
form {
  flex-direction: column;
}

form {
  width: auto;
  position: relative;
}

.input-line,
form {
  display: flex;
  height: auto;
  align-items: center;
}

.input-line {
  width: 100%;
  flex-direction: row;
  justify-content: center;
}

.input-name {
  width: 40%;
  padding: 10px 20px;
  margin: 14px;
  border-radius: 8px;
  outline: none;
  background: #050505;
  border: none;
  font-size: 18px;
}

.form-header,
.input-name {
  color: #f5f5f5;
  font-family: Nunito Sans;
}

.form-header {
  font-size: 24px;
  font-weight: 400;
  padding: 28px;
}

.input-subject {
  margin: 24px;
}

.input-subject,
.input-textarea {
  width: 84%;
  padding: 10px 20px;
  border-radius: 8px;
  outline: none;
  background: #050505;
  border: none;
  color: #f5f5f5;
  font-family: Nunito Sans;
  font-size: 18px;
}

.input-textarea {
  margin: 15px;
  height: 150px;
}

form button {
  padding: 8px 24px;
  font-family: Nunito Sans;
  font-size: 20px;
  color: #f5f5f5;
  background: #d62d20;
  opacity: 0.8;
  margin: 20px;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  transition: all 0.4s ease;
}

form button:hover {
  opacity: 1;
}

.contact-info-header {
  position: relative;
  z-index: 2;
  font-size: 24px;
  font-weight: 400;
  color: #f5f5f5;
  padding: 30px;
}

.contact-info-content,
.contact-info-header {
  font-family: IBM Plex Mono;
}

.contect-info-content-line {
  height: auto;
  padding: 10px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  margin-left: 100px;
}

.contact-info-icon-text {
  color: #f5f5f5;
  padding: 15px;
  font-family: Nunito Sans;
}

.contact-info-icon-text h6 {
  font-size: 15px;
  opacity: 0.8;
}

.contact-info-icon-text p {
  font-size: 14px;
  opacity: 0.7;
}

.icon {
  height: 40px;
  opacity: 0.8;
}

.footer {
  background: #080808;
  width: 100%;
  padding: 20px;
  color: #f5f5f5;
  display: flex;
  flex-direction: row;
  font-family: Nunito Sans;
  align-items: center;
  justify-content: center;
}

.footer .footer-text {
  position: relative;
  display: inline;
  font-size: 18px;
  font-weight: 400;
  opacity: 1;
}

@media only screen and (max-width: 550px) {
  .canvas {
    display: none;
  }
  .header-content {
    height: 100vh;
    width: 100%;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #f5f5f5;
    font-family: IBM Plex Mono;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 40px;
  }

  .contact {
    display: none;
  }

  .header-image {
    float: right;
    height: auto;
    width: 0;
  }

  .social-media-links {
    width: 100%;
    left: 0;
    bottom: 0;
    position: absolute;
    padding: 10px;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .header-content-box {
    padding-left: 0;
  }

  #breaker,
  #contact {
    display: none;
  }

  #breaker {
    height: 100vh;
    width: 200%;
    background-color: #d62d20;
    opacity: 1;
    animation: breakeranimate 2s linear;
    transition: all 0.4s ease;
    z-index: 10;
    position: fixed;
  }

  @keyframes breakeranimate {
    0% {
      transform: translateX(-100%);
    }

    50% {
      transform: translateX(0);
    }

    to {
      transform: translateX(100%);
    }
  }

  @-webkit-keyframes breakeranimate {
    0% {
      transform: translateX(-100%);
    }

    50% {
      transform: translateX(0);
    }

    to {
      transform: translateX(100%);
    }
  }

  .header-content-box {
    z-index: 2;
    text-align: center;
    height: auto;
    padding-right: 0;
    width: auto;
  }

  #about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    width: 100%;
    padding: 30px;
  }

  #about-content,
  .about-header {
    color: #f5f5f5;
    justify-content: center;
  }

  .about-header {
    font-size: 35px;
    font-family: IBM Plex Mono;
    padding: 10px;
    font-weight: 900;
  }

  .about-first-paragraph {
    color: #f5f5f5;
    justify-content: center;
    font-size: 20px;
    font-family: Nunito Sans;
    width: 95%;
    padding: 10px;
    font-weight: 400;
  }

  .about-first-paragraph .color {
    font-size: 30px;
    font-smooth: always;
  }

  .about-first-line {
    font-size: 28px;
    opacity: 1;
    margin-bottom: 10px;
    display: block;
  }

  .about-second-line {
    opacity: 0.8;
    font-size: 15px;
  }

  .about-main {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: auto;
    padding-left: 10px;
    padding-right: 10px;
    flex-direction: column-reverse;
  }

  .about-img img {
    width: 280px;
    height: 220px;
    padding: 5px;
    border-radius: 10%;
  }

  .about-img {
    width: 100%;
    height: 250px;
    border-radius: 10%;
  }

  .about-img,
  .service {
    text-align: center;
    overflow: hidden;
  }

  .service {
    height: 320px;
    width: 90%;
    margin: 1.5%;
    background-color: #191919;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }

  .service,
  .service-img img {
    display: inline-block;
    position: relative;
    z-index: 2;
  }

  .service-img img {
    margin: 20px;
    border-radius: 30%;
    padding: 10px;
    height: 80px;
    transition: all 0.8s ease;
  }

  .skill {
    width: 80%;
  }

  .prog {
    height: 30px;
  }

  .skills-content {
    height: auto;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .portfolio {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 2% 40px 1.5%;
  }

  .portfolio-text {
    width: 90%;
    padding-left: 0;
    margin: 0;
    z-index: 1;
    background: #070707;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .portfolio-image {
    position: relative;
  }

  .portfolio-text h2 {
    font-size: 22px;
    padding: 10px;
  }

  .portfolio-text h2,
  .portfolio-text p {
    font-family: Nunito Sans;
    font-weight: 200;
  }

  .portfolio-text p {
    font-size: 15px;
    opacity: 0.8;
    padding: 15px;
  }

  .cursor {
    display: none;
  }

  .service:hover .service-img img {
    box-shadow: 0 0 0 0 #d62d20;
  }

  .portfolio-image img {
    height: 300px;
    width: 100%;
  }

  .portfolio-image {
    height: 300px;
    width: 90%;
  }

  #navigation-bar img {
    height: 80px;
    position: absolute;
    top: 15%;
    left: 2.5%;
    opacity: 0.8;
    transition: all 0.4s ease;
    display: none;
  }

  .blogs {
    height: auto;
    width: 90%;
    margin: 20px 10px;
    position: relative;
  }

  .blogs .img {
    height: 80%;
    width: 100%;
    overflow: hidden;
    transition: all 0.65s ease;
    position: relative;
  }

  .blog-date {
    position: absolute;
    left: 0;
    bottom: 0;
    color: #f5f5f5;
    font-size: 18px;
    text-align: center;
    font-weight: 400;
    font-family: Nunito Sans;
    padding: 3px;
    width: 35%;
    height: auto;
  }

  .blogs .img img {
    height: 100%;
    width: 100%;
    transition: all 0.65s ease;
  }

  .blog-text {
    height: auto;
    width: 100%;
    text-align: center;
    vertical-align: center;
    font-family: Nunito Sans;
    color: #f5f5f5;
    background-color: #000;
    transition: all 0.5s ease;
  }

  .blog-text h3 {
    font-size: 24px;
    height: 15%;
    padding: 10px;
  }

  .blog-text h3,
  .blog-text p {
    font-weight: 200;
    letter-spacing: 1px;
  }

  .blog-text p {
    font-size: 15px;
    opacity: 0.9;
    height: 85%;
    padding: 20px;
  }

  .blogs:hover .blog-text,
  .blogs:hover .img {
    transform: translateY(0);
  }

  .contact-content {
    width: 90%;
    margin: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .contact-info {
    width: 90%;
    height: 500px;
    background-position: 50%;
    background-size: cover;
    border-radius: 16px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
  }

  .contact-info:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #101010;
    opacity: 0.7;
    pointer-events: none;
  }

  .contact-form {
    height: auto;
    width: 90%;
    display: flex;
    padding-bottom: 40px;
    padding-right: 0;
    flex-direction: column;
  }

  form {
    width: auto;
    position: relative;
  }

  .input-line,
  form {
    display: flex;
    flex-direction: column;
    height: auto;
    align-items: center;
  }

  .input-line {
    width: 100%;
    justify-content: center;
  }

  .input-name {
    width: 90%;
    padding: 10px 20px;
    margin: 14px;
    border-radius: 8px;
    outline: none;
    background: #050505;
    border: none;
    font-size: 16px;
  }

  .form-header,
  .input-name {
    color: #f5f5f5;
    font-family: Nunito Sans;
  }

  .form-header {
    font-size: 22px;
    font-weight: 400;
    padding: 0 20px 20px;
  }

  .input-subject {
    margin: 24px;
  }

  .input-subject,
  .input-textarea {
    width: 90%;
    padding: 10px 20px;
    border-radius: 8px;
    outline: none;
    background: #050505;
    border: none;
    color: #f5f5f5;
    font-family: Nunito Sans;
    font-size: 16px;
  }

  .input-textarea {
    margin: 15px;
    height: 140px;
  }

  form button {
    padding: 8px 24px;
    font-family: Nunito Sans;
    font-size: 20px;
    color: #f5f5f5;
    opacity: 0.8;
    margin: 20px;
    cursor: pointer;
    border: none;
    border-radius: 8px;
    transition: all 0.4s ease;
  }

  form button:hover {
    opacity: 1;
  }

  .contact-info-header {
    position: relative;
    z-index: 2;
    font-size: 24px;
    font-family: IBM Plex Mono;
    font-weight: 400;
    color: #f5f5f5;
    padding: 20px;
  }

  .contect-info-content-line {
    height: auto;
    padding: 10px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    margin-left: 5%;
  }

  .contact-info-icon-text {
    color: #f5f5f5;
    padding: 15px;
    font-family: Nunito Sans;
  }

  .contact-info-icon-text h6 {
    font-size: 15px;
    opacity: 0.8;
  }

  .contact-info-icon-text p {
    font-size: 14px;
    opacity: 0.7;
  }

  .hire-me-section {
    display: none;
  }
}

@media (max-width: 1025px) and (min-width: 551px) {
  .canvas {
    display: none;
  }
  .header-content {
    height: 100vh;
    width: 100%;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #f5f5f5;
    font-family: IBM Plex Mono;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 40px;
  }

  .header-image {
    float: right;
    height: auto;
    width: 0;
  }

  .social-media-links {
    width: 100%;
    left: 0;
    bottom: 0;
    position: absolute;
    padding: 10px;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .header-content-box {
    padding-left: 0;
  }

  #breaker,
  .contact {
    display: none;
  }

  #breaker {
    height: 100vh;
    width: 200%;
    background-color: #d62d20;
    opacity: 1;
    animation: breakeranimate 2s linear;
    transition: all 0.4s ease;
    z-index: 10;
    position: fixed;
  }

  @keyframes breakeranimate {
    0% {
      transform: translateX(-100%);
    }

    50% {
      transform: translateX(0);
    }

    to {
      transform: translateX(100%);
    }
  }

  @-webkit-keyframes breakeranimate {
    0% {
      transform: translateX(-100%);
    }

    50% {
      transform: translateX(0);
    }

    to {
      transform: translateX(100%);
    }
  }

  .header-content-box {
    z-index: 2;
    text-align: center;
    height: auto;
    padding-right: 0;
    width: auto;
  }

  #about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    width: 100%;
    padding: 10px;
  }

  #about-content,
  .about-header {
    color: #f5f5f5;
    justify-content: center;
  }

  .about-header {
    font-size: 45px;
    font-family: IBM Plex Mono;
    padding: 15px;
    font-weight: 900;
  }

  .about-first-paragraph {
    color: #f5f5f5;
    justify-content: center;
    font-size: 40px;
    font-family: Nunito Sans;
    width: 95%;
    padding: 25px;
    font-weight: 400;
  }

  .about-first-paragraph .color {
    font-size: 35px;
    font-smooth: always;
  }

  .about-first-line {
    font-size: 32px;
    opacity: 1;
    margin-bottom: 10px;
    display: block;
  }

  .about-second-line {
    opacity: 0.8;
    font-size: 24px;
  }

  .about-main {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: auto;
    padding-left: 10px;
    padding-right: 10px;
    flex-direction: column-reverse;
  }

  .about-img img {
    width: 100%;
    height: 380px;
    padding: 30px;
    border-radius: 40px;
  }

  .about-img {
    width: 550px;
    height: auto;
    padding: 10px 30px 30px;
    border-radius: 40px;
  }

  .cv a button {
    border: none;
    background: #d62d20;
    padding: 20px 30px;
    color: #f5f5f5;
    outline: none;
    font-size: 20px;
    font-family: aileron;
    border-radius: 8px;
    font-weight: 400;
    cursor: pointer;
    position: relative;
    transition: all 0.4s ease;
  }

  .service {
    height: auto;
    width: 45%;
    margin: 2%;
    background-color: #191919;
    display: inline-block;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;
    z-index: 2;
    border-radius: 10px;
    padding: 10px;
    overflow: hidden;
  }

  .service-description h2 {
    padding: 10px;
    margin: 5px;
    font-weight: 200;
    font-size: 22px;
  }

  .service-description p {
    padding: 10px;
    font-weight: 200;
    font-size: 15px;
    opacity: 0.8;
  }

  .skill {
    width: 40%;
  }

  .prog {
    height: 35px;
  }

  .skills-content {
    height: auto;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .portfolio {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 2% 40px 1.5%;
  }

  .portfolio-text {
    width: 70%;
    padding-left: 0;
    margin: 0;
    z-index: 1;
    background: #080808;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .portfolio-image {
    position: relative;
  }

  .portfolio-text h2 {
    font-size: 35px;
  }

  .portfolio-text h2,
  .portfolio-text p {
    font-family: Nunito Sans;
    font-weight: 200;
    padding: 15px;
  }

  .portfolio-text p {
    font-size: 20px;
    opacity: 0.8;
  }

  .cursor {
    display: none;
  }

  .service:hover .service-img img {
    box-shadow: 0 0 0 0 #d62d20;
  }

  .portfolio-image img {
    height: 380px;
    width: 100%;
    position: relative;
  }

  .portfolio-image {
    height: 380px;
    width: 70%;
  }

  #navigation-bar img {
    height: 80px;
    position: absolute;
    top: 15%;
    left: 2.5%;
    opacity: 0.8;
    transition: all 0.4s ease;
  }

  .blogs {
    height: auto;
    width: 75%;
    margin: 20px 10px;
    position: relative;
  }

  .blogs .img {
    height: 60%;
    width: 100%;
    overflow: hidden;
    transition: all 0.65s ease;
    position: relative;
  }

  .blog-date {
    position: absolute;
    left: 0;
    bottom: 0;
    color: #f5f5f5;
    font-size: 18px;
    text-align: center;
    font-weight: 400;
    font-family: Nunito Sans;
    padding: 3px;
    width: 35%;
    height: auto;
  }

  .blogs .img img {
    height: 100%;
    width: 100%;
    transition: all 0.65s ease;
  }

  .blog-text {
    height: auto;
    width: 100%;
    text-align: center;
    vertical-align: center;
    font-family: Nunito Sans;
    color: #f5f5f5;
    background-color: #050505;
    padding: 10px;
    transition: all 0.5s ease;
  }

  .blog-text h3 {
    font-size: 28px;
    height: 15%;
    padding: 10px;
  }

  .blog-text h3,
  .blog-text p {
    font-weight: 200;
    letter-spacing: 1px;
  }

  .blog-text p {
    font-size: 17px;
    opacity: 0.9;
    height: 85%;
    padding: 20px;
  }

  .blogs:hover .blog-text,
  .blogs:hover .img {
    transform: translateY(0);
  }

  .contact-content {
    width: 90%;
    margin: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .contact-info {
    width: 70%;
    height: 500px;
    background-position: 50%;
    background-size: cover;
    border-radius: 16px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
  }

  .contact-info:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #101010;
    opacity: 0.7;
    pointer-events: none;
  }

  .contact-form {
    height: auto;
    width: 90%;
    display: flex;
    padding-bottom: 40px;
    padding-right: 0;
    flex-direction: column;
  }

  form {
    width: auto;
    position: relative;
  }

  .input-line,
  form {
    display: flex;
    flex-direction: column;
    height: auto;
    align-items: center;
  }

  .input-line {
    width: 100%;
    justify-content: center;
  }

  .input-name {
    width: 80%;
    padding: 10px 20px;
    margin: 14px;
    border-radius: 8px;
    outline: none;
    background: #050505;
    border: none;
    font-size: 16px;
  }

  .form-header,
  .input-name {
    color: #f5f5f5;
    font-family: Nunito Sans;
  }

  .form-header {
    font-size: 22px;
    font-weight: 400;
    padding: 0 20px 20px;
  }

  .input-subject {
    margin: 24px;
  }

  .input-subject,
  .input-textarea {
    width: 80%;
    padding: 10px 20px;
    border-radius: 8px;
    outline: none;
    background: #050505;
    border: none;
    color: #f5f5f5;
    font-family: Nunito Sans;
    font-size: 16px;
  }

  .input-textarea {
    margin: 15px;
    height: 140px;
  }

  form button {
    padding: 8px 24px;
    font-family: Nunito Sans;
    font-size: 20px;
    color: #f5f5f5;
    opacity: 0.8;
    margin: 20px;
    cursor: pointer;
    border: none;
    border-radius: 8px;
    transition: all 0.4s ease;
  }

  form button:hover {
    opacity: 1;
  }

  .contact-info-header {
    position: relative;
    z-index: 2;
    font-size: 24px;
    font-family: IBM plex Mono;
    font-weight: 400;
    color: #f5f5f5;
    padding: 20px;
  }

  .contect-info-content-line {
    height: auto;
    padding: 10px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    margin-left: 30%;
  }

  .hire-me-section {
    display: none;
  }
}

@media (max-width: 9000px) and (min-width: 1441px) {
  .portfolio-image img {
    height: 500px;
    width: 100%;
    position: relative;
  }

  .portfolio-image {
    height: 500px;
    width: 40%;
  }

  .about-img img {
    width: 100%;
    animation: opacity 1.4s ease;
  }

  .about-img,
  .about-img img {
    height: 450px;
    padding: 30px;
    border-radius: 40px;
  }

  .about-img {
    width: 40%;
  }

  .about-first-line {
    font-size: 45px;
    opacity: 1;
    margin-bottom: 10px;
    display: block;
  }

  .about-first-line .color {
    font-size: 46px;
  }

  .about-second-line {
    opacity: 0.8;
    font-size: 28px;
    font-weight: 200;
  }

  .cv a button {
    background: #d62d20;
    border: none;
    padding: 25px 35px;
    color: #f5f5f5;
    outline: none;
    font-size: 30px;
    font-family: aileron;
    border-radius: 4px;
    font-weight: 400;
    cursor: pointer;
    position: relative;
    transition: all 0.4s ease;
  }

  .service {
    height: 400px;
    width: 28%;
    margin: 1.5%;
    padding: 10px;
    background-color: #191919;
    display: inline-block;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
    border-radius: 10px;
    overflow: hidden;
    animation: opacity 1.4s ease;
  }

  .service,
  .service-img {
    text-align: center;
  }

  .service-img img {
    display: inline-block;
    z-index: 2;
    position: relative;
    margin: 20px;
    border-radius: 30%;
    padding: 10px;
    height: 120px;
    transition: all 0.8s ease;
  }

  .service-description h2 {
    padding: 10px;
    margin: 5px;
    font-weight: 200;
    font-size: 32px;
  }

  .service-description p {
    padding: 10px;
    font-weight: 200;
    font-size: 18px;
    opacity: 0.8;
  }

  .blogs {
    height: 420px;
    width: 30%;
    margin: 50px auto;
  }

  .blogs,
  .blogs .img {
    position: relative;
    overflow: hidden;
  }

  .blogs .img {
    height: 80%;
    width: 100%;
    transition: all 0.65s ease;
  }

  .blog-date {
    position: absolute;
    left: 0;
    bottom: 0;
    color: #f5f5f5;
    font-size: 18px;
    text-align: center;
    font-weight: 400;
    font-family: Nunito Sans;
    padding: 3px;
    width: 25%;
    height: auto;
  }

  .blogs .img img {
    height: 100%;
    width: 100%;
    transition: all 0.65s ease;
  }

  .blog-text {
    height: 80%;
    width: 100%;
    text-align: center;
    vertical-align: center;
    font-family: Nunito Sans;
    color: #f5f5f5;
    background-color: #050505;
    transition: all 0.5s ease;
  }

  .blog-text h3 {
    font-size: 28px;
    font-weight: 500;
    height: 20%;
    padding: 20px;
    letter-spacing: 1px;
  }

  .blog-text p {
    font-size: 18px;
    opacity: 0.9;
    font-weight: 400;
    height: 80%;
    padding: 30px;
    letter-spacing: 1px;
  }

  .blogs:hover .blog-text,
  .blogs:hover .img {
    transform: translateY(-70%);
  }

  .contact-header {
    height: auto;
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    font-family: IBM Plex Mono;
    color: #f5f5f5;
    padding: 60px 10px 30px;
    font-weight: 900;
  }

  .contact-header-caption {
    padding: 10px;
    color: #f5f5f5;
    opacity: 0.9;
    font-family: IBM Plex Mono;
    font-size: 18px;
  }

  .contact-content {
    width: 90%;
    margin: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .contact-info {
    width: 40%;
    height: 600px;
    background-position: 50%;
    background-size: cover;
    border-radius: 16px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
  }

  .contact-info:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #101010;
    opacity: 0.7;
    pointer-events: none;
  }

  .contact-form {
    height: 600px;
    width: 60%;
    display: flex;
    flex-direction: column;
  }

  form {
    width: auto;
    position: relative;
  }

  .input-line,
  form {
    display: flex;
    flex-direction: column;
    height: auto;
    align-items: center;
  }

  .input-line {
    width: 100%;
    justify-content: center;
  }

  .input-name {
    width: 60%;
    padding: 10px 20px;
    margin: 14px;
    border-radius: 8px;
    outline: none;
    background: #050505;
    border: none;
    font-size: 18px;
  }

  .form-header,
  .input-name {
    color: #f5f5f5;
    font-family: Nunito Sans;
  }

  .form-header {
    font-size: 24px;
    font-weight: 400;
    padding: 0 20px 20px;
  }

  .input-subject {
    margin: 24px;
  }

  .input-subject,
  .input-textarea {
    width: 60%;
    padding: 10px 20px;
    border-radius: 8px;
    outline: none;
    background: #050505;
    border: none;
    color: #f5f5f5;
    font-family: Nunito Sans;
    font-size: 18px;
  }

  .input-textarea {
    margin: 15px;
    height: 150px;
  }

  form button {
    padding: 8px 24px;
    font-family: Nunito Sans;
    font-size: 20px;
    color: #f5f5f5;
    opacity: 0.8;
    margin: 20px;
    cursor: pointer;
    border: none;
    border-radius: 8px;
    transition: all 0.4s ease;
  }

  .spinner {
    --gap: 5px;
    --clr: #d62d20;
    --height: 23px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap);
  }

  .spinner span {
    background: var(--clr);
    width: 6px;
    height: var(--height);
    animation: grow 1s ease-in-out infinite;
  }

  .spinner span:nth-child(2) {
    animation: grow 1s ease-in-out 0.15s infinite;
  }

  .spinner span:nth-child(3) {
    animation: grow 1s ease-in-out 0.3s infinite;
  }

  .spinner span:nth-child(4) {
    animation: grow 1s ease-in-out 0.475s infinite;
  }

  @keyframes grow {
    0%,
    to {
      transform: scaleY(1);
    }

    50% {
      transform: scaleY(1.8);
    }
  }
}
