* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Jersey 25", sans-serif;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  letter-spacing: 1px;
}
a {
  text-decoration: none;
  color: white;
}
body {
  position: relative;
}

#mobile-warning {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #3d3735;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 26px;
  z-index: 0;
  padding: 20px;
}

/* main landing page */
.hero-container {
  background-color: #0d0d0d;
  color: white;
  position: relative;
  /* margin-bottom: 20px; */
  width: 100%;
  overflow: hidden;
  /* border-radius: 15px 15px 0px 0px; */
}
.to-top {
  font-size: 2rem;
  position: fixed;
  left: 94%;
  top: 90%;
  z-index: 12;
}
.to-top i {
  transition: transform 0.2s linear;
}
.to-top i:hover {
  transform: scale(1.2);
}
/* header */
/* desktop */
header {
  background-color: #111;
  color: white;
}
.desktop-header {
  border: 1px solid;
  border-top: transparent;
  border-left: transparent;
  border-right: transparent;
  min-height: 10dvh;
}
.desktop-header ul {
  display: flex;
  align-items: center;
  list-style-type: none;
  justify-content: space-between;
  padding: 20px;
  flex-flow: row nowrap;
}
.desktop-header ul li:first-child {
  margin-right: auto;
  font-size: 2.5rem;
}
.desktop-header ul li {
  margin: 0px 25px;
  font-size: 2rem;
  transform: scale(0.8);
  transition: transform 0.2s;
}
.desktop-header ul li i {
  cursor: pointer;
}
.desktop-header ul li:nth-child(1):hover,
.desktop-header ul li:nth-child(2):hover,
.desktop-header ul li:nth-child(3):hover,
.desktop-header ul li:nth-child(4):hover {
  transform: scale(1);
}
.active {
  background-color: green;
  padding: 10px 20px;
  border-radius: 15px;
  transform: scale(0.8);
}

/* .main-btn {
} */

/* The switch - the box around the slider */
.switch {
  font-size: 17px;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  width: 4em;
  height: 2.2em;
  border-radius: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2a2a2a;
  transition: 0.4s;
  border-radius: 30px;
  overflow: hidden;
}

.slider:before {
  position: absolute;
  content: "";
  height: 1.2em;
  width: 1.2em;
  border-radius: 20px;
  left: 0.5em;
  bottom: 0.5em;
  transition: 0.4s;
  transition-timing-function: cubic-bezier(0.81, -0.04, 0.38, 1.5);
  box-shadow: inset 8px -4px 0px 0px #fff;
}

.switch input:checked + .slider {
  background-color: #00a6ff;
}

.switch input:checked + .slider:before {
  transform: translateX(1.8em);
  box-shadow: inset 15px -4px 0px 15px #ffcf48;
}

.star {
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  width: 5px;
  transition: all 0.4s;
  height: 5px;
}

.star_1 {
  left: 2.5em;
  top: 0.5em;
}

.star_2 {
  left: 2.2em;
  top: 1.2em;
}

.star_3 {
  left: 3em;
  top: 0.9em;
}

.switch input:checked ~ .slider .star {
  opacity: 0;
}

.cloud {
  width: 3.5em;
  position: absolute;
  bottom: -1.4em;
  left: -1.1em;
  opacity: 0;
  transition: all 0.4s;
}

.switch input:checked ~ .slider .cloud {
  opacity: 1;
}

/* .hide-on-mobile{
    display: none;
} */
.hide-on-desktop {
  display: none;
}
/* mobile */
.mobile-header {
  padding: 0;
}

/* footer */
footer {
  color: white;
  width: 100%;
  padding: 30px;
  background-color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: capitalize;
}
footer .footer-text {
  line-height: 1.5;
  font-size: 1.5rem;
  color: #d1d5db9d;
}
footer .footer-text h2 {
  font-size: 2.5rem;
  color: aliceblue;
}
footer .social-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
footer .social-contact .social-links a {
  padding: 20px;
  font-size: 1.5rem;
  transition: font-size 0.2s ease-in;
}
footer .social-contacts .social-links a:hover {
  font-size: 1.8rem;
}
.animate-color-social-links i,
.animate-color-social-links svg {
  transition: all 0.2s ease-in;
}
#x-twitter svg {
  width: 22px;
  height: 22px;
}
#github:hover,
#x-twitter:hover {
  color: #111;
}
#facebook:hover {
  color: #1877f2;
}
#linkedin:hover {
  color: #0a66c2;
}
#instagram:hover {
  -webkit-text-fill-color: transparent;
  background: radial-gradient(
      circle at 30% 107%,
      rgb(253, 244, 151) 0%,
      rgb(253, 244, 151) 5%,
      rgb(253, 89, 73) 45%,
      rgb(214, 36, 159) 60%,
      rgb(40, 90, 235) 90%
    )
    text;
}
footer .social-contact .social-button {
  margin-top: 40px;
}

footer .social-contact .social-button button {
  padding: 10px 20px;
  border: none;
  border: 1px rgb(62, 53, 53) solid;
  background-color: #262626;
  border-radius: 15px 10px 15px 10px;
  transition: all 0.2s linear;
  font-size: 1.3rem;
}
footer .social-contact .social-button button:hover {
  background-color: green;
  transform: translateY(-5px);
  border-radius: 10px 15px 10px 15px;
  color: antiquewhite;
}
footer .social-contact .social-button button:active {
  transform: translateY(5px);
}

/* home page */

/* hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-height: 89dvh;
}
.hero .main-text {
  font-size: 1.7rem;
  line-height: 1.5;
  text-transform: capitalize;
  width: fit-content;
}
.hero .main-text p {
  font-size: 1.4rem;
}
.hero .main-text h1 {
  border-right: 1px solid;
  border-right: transparent;
  white-space: nowrap;
  width: 0%;
  overflow: hidden;
  animation:
    blinking 0.4s linear 8,
    typing-1 2s linear forwards;
}
.hero .main-text p:first-of-type {
  border-right: 1px solid;
  border-right: transparent;
  white-space: nowrap;
  width: 0%;
  overflow: hidden;
  animation:
    blinking 0.6s linear 9,
    typing-2 2s 2.2s linear forwards;
}
.hero .main-text p:last-of-type {
  border-right: 1px solid;
  border-right: transparent;
  white-space: nowrap;
  width: 0%;
  overflow: hidden;
  animation:
    blinking 0.7s linear 11,
    typing-3 2s 4.2s linear forwards;
}
.hero .main-text button {
  background-color: #262626;
  border: none;
  border: 1px white;
  align-items: center;
  font-size: 1.3rem;
  margin-top: 30px;
  padding: 10px 20px;
  border-radius: 15px 10px 15px 10px;
  /* margin-left: 50%; */
  /* transform: translateX(-50%) scale(0.8); */
  transition: all 0.2s;
}
.hero .main-text button:hover {
  background-color: rgb(202, 45, 45);
  transform: translateY(-5px);
  border-radius: 10px 15px 10px 15px;
  color: antiquewhite;
}
.hero .main-text button:active {
  background-color: rgb(202, 45, 45);
  transform: translateY(10px);
  border-radius: 10px 15px 10px 15px;
  color: antiquewhite;
}
.image-container {
  width: 300px;
  overflow: hidden;
  border-radius: 10px 20px 10px 20px;
}
.hero .hero-image {
  width: 100%;
  border-radius: 10px 20px 10px 20px;
  transition: all 0.5s ease;
  /* animation: scale 2s linear alternate infinite; */
}

.hero .hero-image:hover {
  transform: scale(1.2);
}

.to-about {
  position: absolute;
  font-size: 2rem;
  cursor: pointer;
  bottom: 16%;
  left: 50%;
  animation: up-down-scale 2s alternate infinite;
  transform: scale(0.8);
}
.to-about a {
  color: white;
  transition: all 0.2s linear;
}

.to-about:hover,
.to-about a:hover {
  animation-play-state: paused;
  color: darkred;
}
/* about section */
.about {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-color: #1a1a1a;
  flex-direction: column;
  color: white;
  width: 100%;
  padding: 30px 0px;
  min-height: 75dvh;
}
.about > h2 {
  font-size: 2.8rem;
  text-decoration: underline;
  animation: up-down 1s linear alternate infinite;
  color: whitesmoke;
}
.about-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
}
.about .about-content .main-text {
  line-height: 1.5;
  font-size: 1.8rem;
  margin-right: 100px;
}
.about .main-text h2 {
  font-size: 3rem;
  animation: scale-alot 2s linear forwards;
  animation-timeline: view(); /* Link to viewport scrolling */
  animation-range: entry 0% cover 80%; /* Trigger when 0% of element enters, ends when 30% is covered */
}
.about a {
  text-decoration: underline;
  transition: all 0.2s linear;
  color: #d1d5db;
}
.about a:hover {
  font-size: 1.9rem;
}
.about a:focus {
  color: rgb(218, 164, 64);
}
.card-container {
  perspective: 300px;
  width: 250px;
  height: 350px;
  margin-right: 40px;
}
.card {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.5s ease-in;
}
.card-container .face {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  backface-visibility: hidden;
  border-radius: 20px 15px 20px 15px;
  padding: 10px;
  font-size: 1.5rem;
}
.card-container .face h2,
.card-container .face p {
  margin-top: 10px;
  text-align: center;
}
.front {
  background-color: #111;
}

.back {
  background-color: #262626;
  transform: rotateY(180deg);
  backface-visibility: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-evenly;
  flex-direction: column;
  border-radius: 20px 15px 20px 15px;
  padding: 10px;
  text-transform: capitalize;
  font-size: 1.5rem;
}
.back p::before {
  content: "- ";
}
.back h2 {
  text-align: center;
}
.card:hover {
  transform: rotateY(180deg);
}

/* skills section */
.skills {
  background-color: #262626;
  padding-top: 50px;
  color: white;
  min-height: 80dvh;
}

.skills > h2 {
  font-size: 2.5rem;
  text-decoration: underline;
  animation: up-down 1s linear alternate infinite;
  margin-bottom: 60px;
  text-align: center;
  color: whitesmoke;
}

.skills-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  justify-items: center;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.skill-card {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  font-size: 1.5rem;
  width: 100%;
  max-width: 250px;
  height: 250px;
  border-radius: 15px;
  background-color: #111;
  color: white;
  transition: transform 0.2s linear;
  text-transform: capitalize;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(2px);
  border: white 1px solid;
  padding: 10px;
  margin: 0 auto;
}

.skill-card i {
  font-size: 4rem;
}

.skill-card p {
  font-size: 1.3rem;
}

.skill-card:hover {
  transform: translateY(-10px);
}

.skill-card::after {
  content: "";
  bottom: 0;
  left: 0;
  text-align: center;
  position: absolute;
  width: 0%;
  height: 10px;
  background: none;
  border-radius: 0px 5px 5px 0px;
  transition: all 0.2s ease-in;
}

.skill-card.html:hover::after {
  width: 100%;
  background: rgb(10, 181, 4);
}

.skill-card.css:hover::after {
  width: 50%;
  background: rgb(164, 137, 3);
}

.skill-card.js:hover::after {
  width: 20%;
  background: rgb(145, 62, 62);
}

.skill-card.flutter:hover::after {
  width: 20%;
  background: rgb(145, 62, 62);
}

.skill-card.python:hover::after {
  width: 80%;
  background: rgb(26, 143, 22);
}

/* animations */
@keyframes scale {
  to {
    transform: scale(1.03);
  }
}
@keyframes scale-alot {
  to {
    /* transform: scale(1.5); */
    /* transform: translateX(0%); */
    font-size: 6rem;
  }
}
@keyframes up-down {
  to {
    transform: translateY(10px);
  }
}
@keyframes up-down-scale {
  to {
    transform: translateY(40px) scale(1.2);
  }
}
@keyframes typing-1 {
  to {
    width: 29.5ch;
  }
}
@keyframes typing-2 {
  to {
    width: 61ch;
  }
}
@keyframes typing-3 {
  to {
    width: 34ch;
  }
}
@keyframes blinking {
  to {
    border-right: solid;
  }
}

/* projects page */
/* .projects-body {
  background-color: #9c9c9c;
} */
.projects-container {
  width: 100%;
  height: 100%;
  background-color: #262626;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.171) 2px,
    transparent 0
  );
  background-size: 30px 30px;
  background-position: -5px -5px;
}
.first-project,
.second-project,
.third-project {
  position: relative;
}
.projects-section > h2,
.projects-section-other > h2 {
  display: block;
  text-align: center;
  font-size: 2.5rem;
  animation: up-down 1s linear alternate infinite;
  text-align: center;
  color: #111;
  color: whitesmoke;
  margin: 50px 0px;
}
.projects-section .project {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background-color: #363534; */
  backdrop-filter: blur(4px);
  color: white;
  width: 80%;
  padding-bottom: 150px;
  margin: 40px auto;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9);
  transition: all 0.2s ease-in;
}

/* .projects-section .project.first-project {
  background-image: url("/images/study_bot_project_1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.projects-section .project.second-project {
  background-image: url("/images/study_bot_project_2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.projects-section .project.third-project {
  background-image: url("/images/study_bot_project_3.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
} */

/* .projects-section .project{
  padding: 40px;
} */
.projects-section .project:hover {
  transform: translateY(-5px);
}
.projects-section .project .project-description p {
  font-size: 1.5rem;
  line-height: 4;
  text-transform: capitalize;
}
.projects-section .project .project-description p:first-of-type {
  padding-top: 100px;
}
.first-project h3,
.second-project h3,
.third-project h3 {
  position: absolute;
  top: 10%;
  font-size: 2.5rem;
  text-decoration: underline;
}
.projects-section .project .image-container-projects {
  width: 400px;
  height: 400px;
  overflow: hidden;
  border-radius: 15px;
  margin-top: 90px;
}
.projects-section .project .image-container-projects img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* margin-top: 90px; */
  /* height: 400px; */
  border-radius: 15px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease;
}
.projects-section .project.second-project .image-container-projects img {
  filter: brightness(0.8);
}
.projects-section .image-container-projects img:hover {
  transform: scale(1.1);
}
.projects-section .project .project-description button {
  position: absolute;
  left: 50%;
  top: 90%;
  transform: translate(-50%, -50%);
  padding: 10px 20px;
  border: none;
  border: 1px rgb(62, 53, 53) solid;
  background-color: #262626;
  border-radius: 15px 10px 15px 10px;
  transition: all 0.2s linear;
  font-size: 1.8rem;
}

.projects-section .project .project-description button:hover {
  background-color: green;
  transform: translate(-50%, -70%);
  border-radius: 10px 15px 10px 15px;
  color: antiquewhite;
}
.projects-section .project .project-description button:active {
  transform: translate(-50%, -50%);
}

/* contact me */
.contact-me-section {
  background-color: #1a1a1a;
  color: white;
  padding: 40px 60px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}

.to-top i {
  color: white;
}
.contact-me-image {
  width: 300px;
  border-radius: 15px 10px 15px 10px;
  margin-right: 90px;
}
.contact-me-image {
  animation: up-down 1s linear alternate infinite;
}

.form {
  width: 70%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form h1 {
  font-size: 2.5rem;
  color: whitesmoke;
  margin-bottom: 25px;
  text-align: center;
}

/* input container */
.input-box {
  position: relative;
  width: 60%;
  margin-bottom: 20px;
}

/* icons */
.input-box i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
}

/* placeholders */
.input-box input::placeholder,
.input-box textarea::placeholder {
  color: white;
  font-size: 20px;
}

/* inputs */
.input-box input,
.input-box textarea {
  width: 100%;
  padding: 12px 40px 12px 12px;
  border: 1px solid white;
  background-color: transparent;
  color: white;
  border-radius: 10px;
  font-size: 20px;
  outline: none;
}

/* textarea */
.input-box textarea {
  height: 90px;
  resize: none;
  overflow: hidden;
}

/* buttons */
.form-button {
  display: flex;
  width: 60%;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
}

/* awcss */
.send-button {
  background-color: #262626;
  border-radius: 10px;
}

.send-button:hover {
  border-radius: 10px;
}

.send-button::before {
  content: "Submit";
}

.send-button:focus::before {
  content: "Submitted";
}

.button.primary {
  background-color: green;
}

/* media queries */

/* large desktops */
@media (max-width: 2260px) {
  /* home */
  .hero {
    padding: 10px;
  }
  .about {
    padding: 20px 10px;
  }
  .card-container {
    margin-right: 15px;
  }
  /* projects */
  .projects-section .project {
    /* padding: 35px; */
    width: 90%;
    padding-bottom: 130px;
  }

  .projects-section .project .project-description p {
    font-size: 1.3rem;
  }
  .projects-section .project .project-description p:first-of-type {
    padding-top: 90px;
  }
  .first-project h3,
  .second-project h3,
  .third-project h3 {
    top: 11%;
    font-size: 2.5rem;
  }
  .projects-section .project .image-container-projects {
    width: 500px;
    height: 350px;
    margin-top: 40px;
  }

  .projects-section .image-container-projects img:hover {
    transform: scale(1.2);
  }

  /* contact me */
  .contact-me-section {
    padding: 40px 0px 40px 60px;
  }

  .contact-me-image {
    margin-right: 150px;
  }
}

/*small desktops */
@media (max-width: 1100px) {
  /* desktop header */
  .desktop-header ul {
    padding: 15px;
  }
  .desktop-header ul li:first-child {
    font-size: 2.3rem;
  }
  .desktop-header ul li {
    margin: 0px 15px;
    font-size: 1.7rem;
    transform: scale(0.8);
  }

  /* home */
  .hero {
    padding: 10px;
    min-height: 80dvh;
  }
  .hero .main-text {
    font-size: 1.3rem;
    line-height: 1.4;
  }
  .hero .main-text p {
    font-size: 1.3rem;
  }
  .hero .main-text button {
    font-size: 1.3rem;
    margin-top: 25px;
    padding: 10px 20px;
  }
  .image-container {
    width: 250px;
  }
  .about {
    padding: 10px 15px;
    min-height: 80dvh;
  }
  .card-container {
    margin-right: 15px;
  }

  .about > h2 {
    font-size: 2.7rem;
  }
  .about .about-content .main-text {
    line-height: 1.4;
    font-size: 1.5rem;
    margin-right: 110px;
  }
  .about .main-text h2 {
    font-size: 1.5rem;
  }
  .about a:hover {
    font-size: 1.6rem;
  }
  .card-container {
    perspective: 300px;
    width: 240px;
    height: 370px;
    margin-right: 40px;
  }
  .card-container .face {
    padding: 15px;
    font-size: 1.3rem;
  }
  .card-container .face h2,
  .card-container .face p {
    margin-top: 5px;
  }
  .back {
    padding: 15px;
    font-size: 1.3rem;
  }

  .skills {
    padding: 40px 0px;
    min-height: 70dvh;
  }

  .skills > h2 {
    font-size: 2.3rem;
    margin-bottom: 60px;
  }

  .skills-content {
    gap: 25px;
  }

  .skill-card {
    font-size: 1.4rem;
    max-width: 220px;
    height: 250px;
    padding: 10px;
  }

  .skill-card i {
    font-size: 3rem;
  }

  .skill-card p {
    font-size: 1.2rem;
  }

  /* projects */
  .projects-section .project {
    width: 90%;
    padding-bottom: 90px;
  }

  .projects-section .project .project-description p {
    font-size: 1.2rem;
  }
  .projects-section .project .project-description p:first-of-type {
    padding-top: 70px;
  }
  .first-project h3,
  .second-project h3,
  .third-project h3 {
    top: 8%;
    font-size: 2.3rem;
  }
  .projects-section .project .image-container-projects {
    width: 300px;
    height: 250px;
    margin-top: 40px;
  }

  .projects-section .image-container-projects img:hover {
    transform: scale(1.2);
  }

  .projects-section .project .project-description button {
    padding: 10px 20px;
    font-size: 1.5rem;
  }

  /* contact me */
  .contact-me-section {
    padding: 40px 0px 40px 60px;
  }

  .contact-me-image {
    margin-right: 0px;
  }
  footer {
    padding: 20px;
  }
  footer .footer-text {
    line-height: 1.3;
    font-size: 1.2rem;
  }
}

@media (min-width: 980px) and (max-width: 1100px) {
  /* projects */
  .projects-section .project .image-container-projects {
    width: 370px;
    height: 250px;
    margin-top: 40px;
  }
}
/* horizontal tablets */
@media (max-width: 917px) {
  /* desktop header */
  .desktop-header ul {
    padding: 15px;
  }
  .desktop-header ul li:first-child {
    font-size: 2.3rem;
  }
  .desktop-header ul li {
    margin: 0px 15px;
    font-size: 1.7rem;
    transform: scale(0.8);
  }

  /* home */
  .hero {
    padding: 15px;
    min-height: 80dvh;
  }
  .hero .main-text {
    font-size: 1.2rem;
    line-height: 1.4;
  }
  .hero .main-text p {
    font-size: 1.1rem;
  }
  .hero .main-text button {
    font-size: 1.1rem;
    margin-top: 20px;
    padding: 10px 20px;
  }
  .image-container {
    width: 200px;
  }

  .about {
    padding: 10px 15px;
    min-height: 80dvh;
  }
  .card-container {
    margin-right: 15px;
  }

  .about > h2 {
    font-size: 2.5rem;
  }
  .about .about-content .main-text {
    line-height: 1.4;
    font-size: 1.3rem;
    margin-right: 110px;
  }
  .about .main-text h2 {
    font-size: 1.5rem;
  }
  .about a:hover {
    font-size: 1.5rem;
  }
  .card-container {
    perspective: 300px;
    width: 250px;
    height: 340px;
    margin-right: 40px;
  }
  .card-container .face {
    padding: 5px;
    font-size: 1.2rem;
  }
  .card-container .face h2,
  .card-container .face p {
    margin-top: 5px;
  }
  .back {
    padding: 10px;
    font-size: 1.1rem;
  }

  .skills {
    padding: 30px 0px;
    min-height: 70dvh;
  }

  .skills > h2 {
    font-size: 2.3rem;
    margin-bottom: 60px;
  }

  .skills-content {
    gap: 20px;
  }

  .skill-card {
    font-size: 1.4rem;
    max-width: 200px;
    height: 230px;
    padding: 10px;
  }

  .skill-card i {
    font-size: 2.8rem;
  }

  .skill-card p {
    font-size: 1.1rem;
  }

  /* projects */
  .projects-section .project {
    width: 90%;
    padding-bottom: 90px;
  }

  .projects-section .project .project-description p {
    font-size: 1.1rem;
  }
  .projects-section .project .project-description p:first-of-type {
    padding-top: 90px;
  }
  .first-project h3,
  .second-project h3,
  .third-project h3 {
    top: 8%;
    font-size: 2.3rem;
  }
  .projects-section .project .image-container-projects {
    width: 220px;
    height: 220px;
    margin-top: 40px;
  }

  .projects-section .image-container-projects img:hover {
    transform: scale(1.2);
  }

  .projects-section .project .project-description button {
    padding: 10px 20px;
    font-size: 1.5rem;
  }

  /* contact me */
  .contact-me-section {
    padding: 40px 0px 40px 30px;
  }

  .form {
    width: 60%;
  }
  .contact-me-image {
    margin-right: 0px;
    width: 250px;
  }

  /* footer */
  footer {
    padding: 30px;
  }
  footer .footer-text {
    line-height: 1.5;
    font-size: 1.4rem;
  }
}
