html {
  cursor: url("/images/cursor.png") 20 20, default;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "IBM Plex Sans", sans-serif;
  user-select: none;
}

.nav {
  top: 1.2%;
  gap: 6%;
  position: fixed;
  width: 95vw;
  margin: auto;
  font-size: 130%;
  z-index: 1;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.navclass {
  font-family: "poppins";
  font-weight: light;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  color: Black;
  text-align: center;
  padding: 14px 5px;
  text-decoration: none;
  cursor: pointer;
  border-radius: 10px;
  gap: 10px;
}

.homediv {
  background-color: #dddddd;
}

.navclass:hover {
  background-color: #dddddd;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
  border-radius: 10px;
}

.home {
  background-color: #eeeeee;
  padding: 20px;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
}

.maincontainer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  line-height: 1.5cm;
  text-align: center;
  height: auto;
}

.hometxt {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  line-height: 1.5cm;
  height: auto;
  width: 100%;
}

.hometxt h1 {
  font-size: 5rem;
  font-weight: 700;
  color: #050006;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(100px);
  animation: popIn 1.5s forwards;
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hometxt h2 {
  font-size: 2rem;
  font-weight: 300;
  color: black;
  white-space: nowrap;
  margin: 0 auto;
  text-align: center;
  border-right: 2px solid black;
  line-height: 2rem;
  margin-top: 5%;
}

.blink-caret {
  border-right-color: transparent;
  animation: blink-caret 1s step-end infinite;
}

@keyframes blink-caret {

  from,
  to {
    border-right-color: transparent;
  }

  50% {
    border-right-color: black;
  }
}

a {
  text-decoration: none;
  color: #000000;
}

.fade-in {
  animation: fadeIn 0.8s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.indicator {
  position: relative;
  width: 50px;
  height: 50px;
  display: none;

  transform: rotate(45deg);

  span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: none;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    animation: animate 1s linear infinite;

    &:nth-child(1) {
      top: 120px;
      left: 120px;
      animation-delay: 0s;
    }

    &:nth-child(2) {
      top: 115px;
      left: 115px;
      animation-delay: 0.2s;
    }

    &:nth-child(3) {
      top: 130px;
      left: 130px;
      animation-delay: 0.4s;
    }

    &:nth-child(4) {
      top: 145px;
      left: 145px;
      animation-delay: 0.6s;
    }

    &:nth-child(5) {
      top: 160px;
      left: 160px;
      animation-delay: 0.8s;
    }
  }
}

@keyframes animate {
  0% {
    border-color: #000000;
    transform: translate(0, 0);
  }

  20% {
    border-color: #000000;
    transform: translate(15px, 15px);
  }

  20.1%,
  100% {
    border-color: #aaaaaa;
  }
}

.container-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.container-visible {
  opacity: 1;
  transform: translateY(0);
}

.Skills {
  background-color: #eeeeee;
  background: rgb(238, 238, 238);
  background: linear-gradient(180deg,
      rgba(238, 238, 238, 1) 0%,
      rgba(221, 221, 221, 1) 30%);
  width: 100%;
  padding: 10px 0;
}

.Skills h1 {
  color: #000000;
  text-align: center;
  margin-bottom: 2%;
  margin-top: 8%;
  font-size: 2.5em;
  text-decoration: underline;
  filter: drop-shadow(0 0 0.65rem #ffffff);
}

.skillsectionimage {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}

.commonskill {
  gap: 10px;
  margin-top: 25px;
  margin-left: 5%;
  width: fit-content;
  border-radius: 10px;
  height: auto;
  background: #e0e0e0;
  box-shadow: 15px 15px 30px #bebebe, -15px -15px 30px #ffffff;
}

.commonskill h2 {
  margin-top: 3%;
  color: rgb(0, 0, 0);
  text-align: center;
}

#skill1h1 {
  color: rgb(0, 0, 0);
  text-align: center;
}

.skill-box:hover {
  transform: scale(1.2);
  transition: 0.2s;
  transition-timing-function: ease-in-out;
}

.Skills .skillimg {
  box-sizing: border-box;
  height: 100px;
  padding: 20px;
}

.Skills1 {
  margin: auto;
}

.upwardSkills {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}

.Skills1,
.Skills2 {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 43%;
  gap: 0;
  margin: 0 auto;
}

.downwardskills {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 3%;
}

/* Styles for the individual skill box */
.skill-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px;
  text-align: center;
  width: 100px;
  flex-wrap: wrap;
  padding-bottom: 2%;
  cursor: pointer;
}

.skill-box .skill-name {
  font-size: 1rem;
  color: #333;
  font-weight: 900;
}

.container2 {
  background-color: #dddddd;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  /* Add padding to avoid content touching edges */
  min-height: 100vh;
  /* Ensure content fills the height of the viewport */
  padding-bottom: 5%;
}

.aboutme {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: justify;
  padding: 20px;
  margin: 0 auto;
  width: 60%;
  box-sizing: border-box;
  flex-wrap: wrap;
  font-size: larger;
  line-height: 210%;
}

.aboutme p {
  margin-top: 2%;
  color: #000000;
  font-weight: 400;
  font-family: monospace;
  font-size: larger;
}

.projects {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  display: flex;
  margin: 0 auto;
  width: 90%;
  box-sizing: border-box;
  flex-wrap: nowrap;
}

.sorterDiv {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 3%;
  border-radius: 12px;
  background-color: #eeeeee;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sorterDiv>div {
  margin: 0;
  padding: 1rem 1rem;
  text-align: center;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  position: relative;
}

.sorterDiv>div:not(:last-child) {
  padding-right: 1rem;
  /* Add space on the right side of each div except the last one */
}

.sorterDiv>div:not(:last-child)::after {
  content: "";
  display: block;
  height: 1px;
  background-color: #ddd;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
}

.sorterDiv>div:hover {
  background-color: #BBBBBB;
  color: rgb(0, 0, 0);
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.sorterDiv>div.active {
  background-color: #333;
  /* Highlight color for the active tab */
  color: #fff;
  /* Text color for the active tab */
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.sorter {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.allcards {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 1%;
  width: 100%;
  max-width: 100vw;
  flex-grow: 1;
  flex-shrink: 0;
}

.cards-container {
  display: flex;
  width: 100%;
  scroll-behavior: smooth;
  margin-top: 2%;
  flex-wrap: wrap;
  gap: 20px;
  align-content: center;
  justify-content: center;
}

.arrow-up {
  display: inline-block;
  width: 0;
  height: 0;
  margin: auto;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 12px solid white;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

.card {
  width: 275px;
  /* Define width of each card */
  position: relative;
  background: #eeeeee;
  padding: 20px;
  border-radius: 10px;
  height: 40%;
  margin-right: 3%;
  flex: 0 0 auto;
  /* Prevent cards from shrinking or growing */
}

.card::after,
.card::before {
  z-index: -1;
  content: "";
  position: absolute;
  width: 50%;
  height: 10px;
  bottom: 15px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.1s ease-in;
}

.card::after {
  right: 0;
  transform: rotate(5deg);
}

.card::before {
  left: 0;
  transform: rotate(-5deg);
}

.card:hover:before,
.card:hover:after {
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.6);
}

.card:hover:before {
  transform: rotate(-8deg);
}

.card:hover:after {
  transform: rotate(8deg);
}

.card__img {
  position: relative;
  background: #ffffff;
  width: 100%;
  height: 175px;
  display: flex;
  align-items: center;
  border-radius: 10px;
}

.projectimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.Elephantaimg {
  height: 40%;
}

.card__span {
  cursor: pointer;
  font-size: 11px;
  position: absolute;
  background-color: white;
  top: 10px;
  left: 10px;
  padding: 3px 7px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.1s ease-in;
  user-select: none;
}

.card__span:hover {
  transform: translateX(5px);
}

.card-int {
  padding: 20px 0 0 0;
}

.card-int__title {
  font-weight: bold;
  font-size: 1.2rem;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 10px;
}

.card-int__button {
  cursor: pointer;
  margin: 20px 0 0 0;
  padding: 7px 32px;
  width: 100%;
  background-color: #e8e5e5;
  border: none;
  color: black;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0);
  transition: box-shadow 0.1s ease-in;
  user-select: none;
}

.card-int__button:active {
  box-shadow: 0px 0px 15px rgba(0, 119, 255, 0.5);
}

.card-int__button:hover::before {
  animation: effect_two 0.4s 1;
}

.card-int__button::before,
.card-int__button_live_demo::before {
  content: "Redirect";
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  background: rgb(0, 133, 255);
  background: linear-gradient(146deg, #0032a6 0%, #68aeff 100%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: translateX(-99%);
  z-index: 1;
  animation: effect_one 10s infinite;
}

.card-int__button:hover::before {
  transform: translateX(0%);
}

.button_setter {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  flex-direction: row;
}

.excerpt {
  font-size: 14px;
}

/* Keyframes for animations remain unchanged */
@keyframes effect_one {
  0% {
    transform: translateX(-99%);
  }

  25% {
    transform: translateX(-90%);
  }

  50% {
    transform: translateX(-80%);
  }

  75% {
    transform: translateX(-95%);
  }

  100% {
    transform: translateX(-99%);
  }
}

@keyframes effect_two {
  to {
    transform: translateX(-1%);
  }

  from {
    transform: translateX(-99%);
  }
}

.navtxtprop {
  color: #291c3a;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-top: 5%;
  text-decoration: underline;
}

.button {
  --width: 120px;
  --height: 35px;
  --tooltip-height: 35px;
  --tooltip-width: 90px;
  --gap-between-tooltip-to-button: 18px;
  --button-color: #1163ff;
  --tooltip-color: #fff;
  width: var(--width);
  height: var(--height);
  background: var(--button-color);
  position: relative;
  text-align: center;
  border-radius: 0.45em;
  font-family: "Arial";
  transition: background 0.3s;
}

.button::before {
  position: absolute;
  content: attr(data-tooltip);
  width: var(--tooltip-width);
  height: var(--tooltip-height);
  background-color: var(--tooltip-color);
  font-size: 0.9rem;
  color: #111;
  border-radius: 0.25em;
  line-height: var(--tooltip-height);
  bottom: calc(var(--height) + var(--gap-between-tooltip-to-button) + 10px);
  left: calc(50% - var(--tooltip-width) / 2);
}

.button::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top-color: var(--tooltip-color);
  left: calc(50% - 10px);
  bottom: calc(100% + var(--gap-between-tooltip-to-button) - 10px);
}

.button::after,
.button::before {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}

.text {
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-wrapper,
.text,
.icon {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  color: #fff;
}

.text {
  top: 0;
}

.text,
.icon {
  transition: top 0.5s;
}

.icon {
  color: #fff;
  top: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon svg {
  width: 24px;
  height: 24px;
}

.button:hover {
  background: #6c18ff;
}

.button:hover .text {
  top: -100%;
}

.button:hover .icon {
  top: 0;
}

.button:hover:before,
.button:hover:after {
  opacity: 1;
  visibility: visible;
}

.button:hover:after {
  bottom: calc(var(--height) + var(--gap-between-tooltip-to-button) - 20px);
}

.button:hover:before {
  bottom: calc(var(--height) + var(--gap-between-tooltip-to-button));
}

.DownloadCV {
  position: fixed;
  bottom: 20px;
  right: 20px;
  box-shadow: 3px 3px 10px rgb(0, 0, 0);
  border-radius: 2.5rem;
  cursor: pointer;
  display: none;
  z-index: 1000;
}

.work {
  padding: 20px;
  margin: 0 auto;
  width: 60%;
  box-sizing: border-box;
  font-size: larger;
  /* background-color: #DDDDDD; */
}

.allwork,
.education {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 25px;
}

/* Base Styles for .work1, .work2, .education__item */
.work1,
.work2,
.education__item {
  width: 55%;
  margin-top: 1%;
  height: fit-content;
  padding-bottom: 1.3%;
  border-radius: 30px;
  background: #e0e0e0;
  box-shadow: 15px 15px 30px #bebebe, -15px -15px 30px #ffffff;
  transition: all 0.3s ease-in-out;
  /* Smooth transition for all properties */
  position: relative;
  /* Ensures that pseudo-elements are positioned relative to the parent */
  overflow: hidden;
  /* Prevents content from overflowing during scaling */
}

/* Hover Effect */
.work1:hover,
.work2:hover,
.education__item:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 25px 25px 50px rgba(0, 0, 0, 0.2), -25px -25px 50px rgba(255, 255, 255, 0.3);
}

.work1:hover p,
.work2:hover p,
.education__item:hover p {
  color: #555;
}


.workh2,
.education__title {
  color: #291c3a;
  font-size: 2rem;
  margin-left: 3%;
  margin-top: 2%;
  text-align: left;
}

.workh4,
.education__subtitle,
.education__date {
  color: #8121d0;
  margin-left: 3%;
  margin-top: 0.5%;
  text-align: left;
}

.workh2 img {
  width: auto;
  height: 50px;
  float: right;
}

.workp,
.education__description {
  color: #291c3a;
  margin-left: 3%;
  margin-top: 0.5%;
  margin-right: 4%;
  text-align: justify;
}

.work2 .workh2 img {
  width: auto;
  height: 50px;
  margin-right: 9%;
  float: right;
}

.container3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  box-sizing: border-box;
  min-height: 100vh;
  width: 100%;
  padding: 2%;
  position: relative;
  background: linear-gradient(180deg,
      rgba(221, 221, 221, 1) 0%,
      rgba(204, 204, 204, 1) 20%);
  gap: 20px;
}

#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 1.5%;
  left: 1.5%;
  z-index: 1000;
  border: none;
  outline: none;
  background-color: #333;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 50%;
  text-align: center;
}

#scrollTopBtn:hover {
  background-color: #555;
}

.error {
  color: red;
  font-size: 0.875rem;
}

.contact-info,
.contact-form {
  padding: 20px;
  border-radius: 10px;
  width: 48%;
  color: black;
  margin-top: 7%;
  margin-bottom: 6%;
}

.contact-info h1 {
  margin: 0;
  font-size: 4rem;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.title {
  font-size: 18px;
  margin: 1% 0 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.description {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 6%;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.contact-details {
  margin-top: 8%;
}

.contact-details p {
  margin: 20px 0;
  font-size: 14px;
}

.contact-details p i {
  margin-right: 10px;
  font-size: 20px;
  font-style: normal;
  line-height: normal;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-size: 16px;
  margin-bottom: 8px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 2%;
}

.contact-form input,
select {
  margin-bottom: 15px;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
}

.contact-form textarea {
  margin-bottom: 15px;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  height: 22vh;
  resize: none;
}

.contact-form button {
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #007bff;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  font-style: normal;
  font-weight: 600;
}

.contact-form button:hover {
  background-color: #0056b3;
}

.contact-details i {
  color: #007bff;
}

.line {
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.contact-form option:focus,
.contact-form .submit:focus {
  background-color: #ffffff;
  outline: none;
  box-shadow: 0 0 15px rgba(122, 120, 255, 0.626);
}

.phone-input {
  display: flex;
  align-items: center;
  gap: 10px;
}

.country-code {
  padding: 7.5px;
  font-size: 16px;
  width: 32%;
  margin-right: 1%;
}

.phone-number {
  padding: 10px;
  font-size: 16px;
  flex: 1;
}

.footer {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(204, 204, 204);
  background: linear-gradient(180deg,
      rgba(204, 204, 204, 1) 0%,
      rgba(187, 187, 187, 1) 56%);
  padding: 20px;
  width: 100%;
}

.SocialTxt {
  font-size: 1.2rem;
  font-weight: 800;
  color: black;
  display: flex;
  gap: 20px;
  position: relative;
}

.SocialTxt a {
  text-decoration: none;
  color: black;
  position: relative;
  cursor: pointer;
  transition: color 0.3s;
}

.SocialTxt a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: black;
  transition: width 0.3s, left 0.3s;
}

.SocialTxt a:hover::after {
  width: 100%;
  left: 0;
}

.SocialTxt a:focus::after,
.SocialTxt a:active::after {
  width: 100%;
  left: 0;
}

.btn2 {
  cursor: pointer;
  position: relative;
  display: inline-block;
  padding: 15px 30px;
  border: 2px solid #000000;
  text-transform: uppercase;
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
  transition: 0.3s;
  background-color: transparent;
}

.btn2::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% - -2px);
  background-color: #dddddd;
  transition: 0.3s ease-out;
  transform: scaleY(1);
}

.btn2::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% - 50px);
  background-color: #dddddd;
  transition: 0.3s ease-out;
  transform: scaleY(1);
}

.btn2:hover::before {
  transform: translateY(-25px);
  height: 0;
}

.btn2:hover::after {
  transform: scaleX(0);
  transition-delay: 0.15s;
}

.btn2:hover {
  border: 2px solid #ffffff;
  background-color: #212121;
  /* Change background to black on hover */
}

.btn2:hover span {
  color: white;
  /* Change text color to white on hover */
}

.btn2 span {
  position: relative;
  z-index: 3;
}

button {
  text-decoration: none;
  border: none;
  background-color: transparent;
}

select {
  cursor: pointer;
}

/* ======== Blogs Section ======== */
.blogs {
  background: #dddddd;
  padding: 5px 20px;
}

.blogs .navtxtprop {
  margin-top: 0px;
  margin-bottom: 40px;
  text-decoration: none;
}

.blogs-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.blog-card {
  background: #e0e0e0;
  box-shadow: 15px 15px 30px #bebebe, -15px -15px 30px #ffffff;
  border-radius: 20px;
  overflow: hidden;
  max-width: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 25px 25px 50px rgba(0, 0, 0, 0.2), -25px -25px 50px rgba(255, 255, 255, 0.3);
}

.blog-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-title {
  font-size: 1.4rem;
  color: #291c3a;
  margin-bottom: 12px;
}

.blog-excerpt {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
  margin-bottom: 20px;
}

.blog-card .btn2 {
  margin: 0;
  display: inline-block;
  padding: 12px 25px;
}

.view-all-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}