@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --header-height: 3.5rem;
  --hue-color: 250;
  --first-color: hsl(var(--hue-color) 69% 61%);
  --first-color-second: hsl(var(--hue-color) 69% 61%);
  --first-color-alt: hsl(var(--hue-color) 57% 53%);
  --first-color-lighter: hsl(var(--hue-color) 92% 85%);
  --title-color: hsl(var(--hue-color) 8% 15%);
  --text-color: hsl(var(--hue-color) 8% 45%);
  --text-color-light: hsl(var(--hue-color) 8% 65%);
  --input-color: hsl(var(--hue-color) 70% 96%);
  --body-color: hsl(var(--hue-color) 60% 99%);
  --container-color: #fff;
  --scroll-bar-color: hsl(var(--hue-color) 12% 90%);
  --scroll-thumb-color: hsl(var(--hue-color) 12% 80%);
  --dark-title-color: hsl(var(--hue-color) 8% 95%);
  --dark-text-color: hsl(var(--hue-color) 8% 75%);
  --dark-body-color: hsl(var(--hue-color) 28% 12%);
  --dark-container-color: hsl(var(--hue-color) 29% 16%);
  --body-font: "Jost", sans-serif;
  --big-font-size: 2rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1.125rem;
  --subtitle-font-size: 1rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;
  --font-medium: 500;
  --font-semi-bold: 600;
  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}

body.dark-theme {
  --first-color-second: hsl(var(--hue-color) 30% 8%);
  --title-color: var(--dark-title-color);
  --text-color: var(--dark-text-color);
  --body-color: var(--dark-body-color);
  --container-color: var(--dark-container-color);
  --scroll-bar-color: hsl(var(--hue-color) 12% 48%);
  --scroll-thumb-color: hsl(var(--hue-color) 12% 36%);
}

@media screen and (width >= 968px) {
  :root {
    --big-font-size: 3rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  transition: 0.4s;
}

h1,
h2,
h3,
h4 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.section {
  padding: 2rem 0 4rem;
}

.section__title {
  font-size: var(--h1-font-size);
}

.section__subtitle {
  display: block;
  font-size: var(--subtitle-font-size);
  margin-bottom: var(--mb-3);
}

.section__title,
.section__subtitle {
  text-align: center;
}

.container {
  max-width: 968px;
  margin-left: var(--mb-1-5);
  margin-right: var(--mb-1-5);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: var(--body-color);
  box-shadow: 0 1px 4px rgb(0 0 0 / 10%);
  transition: 0.4s;
}

.nav {
  max-width: 968px;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 1rem;
}
.nav__logo,
.nav__toggle {
  color: var(--title-color);
  font-weight: var(--font-medium);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.6rem;
}

.nav__logo:hover {
  color: var(--first-color);
}

.nav__toggle {
  font-size: 1.1rem;
  cursor: pointer;
}

.nav__toggle:hover {
  color: var(--first-color);
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    background-color: var(--body-color);
    padding: 3rem 1.5rem;
    box-shadow: 0 1px 4px rgb(0 0 0 / 10%);
    border-radius: 0 0 1.5rem 1.5rem;
    transition: 0.3s;
  }

  .nav__list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .nav__logo {
    font-size: 1.3rem;
  }

  .show-menu {
    top: var(--header-height);
  }
}

.nav__link {
  display: flex;
  align-items: center;
  font-size: var(--normal-font-size);
  color: var(--title-color);
  font-weight: var(--font-medium);
  transition: 0.3s;
  padding: 0.5rem 0;
}

.nav__link:hover {
  color: var(--first-color);
}

.nav__icon {
  font-size: 1.5rem;
  margin-right: 1rem;
}

.nav__close {
  position: absolute;
  right: 1.3rem;
  top: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--first-color);
}

.nav__close:hover {
  color: var(--first-color-alt);
}

.show-menu {
  top: var(--header-height);
}

.nav__btns {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.change-theme {
  font-size: 1.25rem;
  color: var(--title-color);
  cursor: pointer;
  transition: 0.3s;
  margin-left: 2rem;
}

.change-theme:hover {
  color: var(--first-color);
}

.home {
  padding: 6rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.home__container {
  position: relative;
  row-gap: 3rem;
}

.home__content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8rem;
  padding-top: 2rem;
}

.home__social {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.home__social-icon {
  font-size: 2rem;
  color: var(--first-color);
  transition: 0.3s;
}

.home__social-icon:hover {
  color: var(--first-color-alt);
  transform: translateY(-0.25rem);
}

.home__data {
  text-align: left;
  max-width: 1000px;
  padding-right: 2rem;
}

.home__title {
  font-size: var(--big-font-size);
  margin-bottom: var(--mb-0-75);
}

.home__hand {
  display: inline-block;
  transform-origin: bottom;
  animation: wave 2s infinite;
}

@keyframes wave {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(5deg);
  }
}

.home__subtitle {
  font-size: var(--h3-font-size);
  color: var(--text-color);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-0-75);
}

.home__subtitle span {
  color: var(--first-color);
  font-weight: var(--font-semi-bold);
}

.home__description {
  margin-bottom: var(--mb-2);
  max-width: 400px;
}

.home__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--mb-2);
  width: 800px;
}

.home__tag {
  background-color: var(--first-color-alt);
  color: white;
  padding: 0.65rem 0.75rem;
  border-radius: 2rem;
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}
.button__hire-me {
  border: 1px solid var(--first-color);
  color: var(--first-color);
  padding: 0.65rem 0.75rem;
  cursor: pointer;
  border-radius: 2%;
  transition: 0.3s;
}
.button__download-me {
  border: 1px solid var(--first-color);
  color: var(--first-color);
  padding: 0.65rem 0.75rem;
  cursor: pointer;
  border-radius: 2%;
  transition: 0.3s;
  margin-left: 1rem;
}

.home__img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: calc(-1 * (100vw - 968px) / 2);
}

.home__profile-img {
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.home__scroll {
  text-align: center;
  width: 100%;
  margin-top: 6rem;
  margin-left: 1.5rem;
  margin-bottom: 3rem;
}

.home__scroll-button {
  color: var(--first-color);
  transition: 0.3s;
}

.home__scroll-button:hover {
  transform: translateY(0.25rem);
}

.home__scroll-mouse {
  font-size: 2rem;
}

.home__scroll-name {
  font-size: var(--small-font-size);
  color: var(--title-color);
  font-weight: var(--font-medium);
  margin-right: var(--mb-0-25);
}

.home__scroll-arrow {
  font-size: 1.25rem;
}

@media screen and (max-width: 968px) {
  .home__content {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
      "social image"
      "social data";
    gap: 1.5rem;
    padding-top: 1rem;
  }

  .home__social {
    grid-area: social;
    align-self: center;
  }

  .home__img {
    grid-area: image;
    order: initial;
    margin-right: 0;
    justify-self: center;
  }

  .home__data {
    grid-area: data;
    padding-right: 0;
    text-align: center;
  }

  .home__description {
    width: 100%;
  }
  .home__tags {
    width: 100%;
    justify-content: center;
  }
}

.dark-theme .home__social-icon {
  color: white;
}

.dark-theme .home__social-icon:hover {
  color: var(--first-color);
}

.dark-theme .home__tag {
  background-color: white;
  color: var(--first-color-second);
}
.dark-theme .button__hire-me {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}
.dark-theme .button__download-me {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}
@media screen and (min-width: 768px) {
  .nav__menu {
    margin-left: auto;
  }

  .nav__list {
    display: flex;
    gap: 2rem;
  }

  .nav__toggle,
  .nav__close {
    display: none;
  }

  .nav__icon {
    margin-right: 0.5rem;
  }
}

/*==================== ABOUT ====================*/
.about__container {
  row-gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about__data {
  text-align: center;
}

.about__description {
  margin-bottom: var(--mb-2);
  text-align: justify;
  line-height: 1.6;
}

.about__highlight {
  color: var(--first-color);
  font-weight: var(--font-semi-bold);
  font-size: var(--h3-font-size);
}

/*==================== EDUCATION ====================*/
.education__container {
  row-gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.education__content {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 1.5rem;
}

.education__time {
  position: relative;
  padding-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.education__rounder {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: var(--first-color);
  border-radius: 50%;
  position: relative;
}

.education__line {
  display: block;
  width: 2px;
  height: 100%;
  background-color: var(--first-color);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}

.education__data {
  padding-bottom: 2rem;
  text-align: left;
}

.education__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-5);
}

.education__studies {
  display: block;
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  margin-bottom: var(--mb-0-5);
}

.education__year {
  display: block;
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  margin-bottom: var(--mb-1);
}

.education__description {
  line-height: 1.6;
}

.education__list {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.education__list-item {
  list-style-type: disc;
  margin-bottom: var(--mb-0-5);
}

@media screen and (min-width: 568px) {
  .about__info {
    grid-template-columns: repeat(2, 1fr);
  }

  .education__content {
    grid-template-columns: 50px 1fr;
  }
}

@media screen and (min-width: 768px) {
  .about__container {
    column-gap: 5rem;
  }

  .about__data {
    text-align: left;
  }

  .about__info {
    grid-template-columns: repeat(4, 1fr);
  }

  .education__content {
    grid-template-columns: 50px 1fr;
  }
}

.dark-theme .about__info-item {
  background-color: var(--dark-container-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section__title,
.section__subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
/*==================== SKILLS ====================*/
.skills__container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  overflow: hidden;
}

.skills__scroller {
  width: 100%;
  overflow-x: auto;
  padding: 1rem 0;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
}

.skills__icons {
  display: inline-flex;
  gap: 1rem;
  padding: 0 0.5rem;
}

.skills__icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 50px;
  transition: transform 0.3s;
  scroll-snap-align: start;
}

.skills__icon-item:hover {
  transform: translateY(-5px);
}

.skills__icon-item img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-bottom: 0.3rem;
}

.skills__icon-item span {
  font-size: 0.65rem;
  text-align: center;
  color: var(--text-color);
  white-space: nowrap;
}

.skills__scroller::-webkit-scrollbar {
  display: none;
}

.skills__scroller {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Dark theme styles */
.dark-theme .skills__icon-item span {
  color: var(--dark-text-color);
}

/* Media queries for mobile responsiveness */
@media screen and (max-width: 350px) {
  .skills__icons {
    gap: 0.75rem;
  }

  .skills__icon-item {
    min-width: 45px;
  }

  .skills__icon-item img {
    width: 28px;
    height: 28px;
  }

  .skills__icon-item span {
    font-size: 0.6rem;
  }
}

@media screen and (min-width: 768px) {
  .skills__container {
    padding: 0 1.5rem;
  }

  .skills__icons {
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .skills__icon-item {
    min-width: 60px;
  }

  .skills__icon-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 0.5rem;
  }

  .skills__icon-item span {
    font-size: var(--small-font-size);
  }
}
/*==================== PROJECTS ====================*/
.projects__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.projects__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-bottom: 3rem;
}

.project__card {
  background: var(--container-color);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.project__image-container {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.project__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project__card:hover .project__image {
  transform: scale(1.08);
}

.project__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project__links {
  display: flex;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  justify-content: space-between;
}

.project__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--first-color);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.project__link:hover {
  color: var(--first-color-alt);
  transform: translateX(5px);
}

.project__link i {
  font-size: 1.1rem;
}

.project__content {
  padding: 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.project__title {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
  color: var(--title-color);
  font-weight: 600;
}

.project__description {
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-align: justify;
  flex-grow: 1;
}

.project__tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
  margin-bottom: 1rem;
}

.project__tech span {
  background: var(--first-color);
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 2rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.projects__footer {
  text-align: center;
  margin-top: 2rem;
}
.project__footer-button {
  background-color: var(--first-color);
  color: white;
  padding: 0.65rem 0.75rem;
  cursor: pointer;
  border-radius: 2rem;

  transition: 0.3s;
}
.dark-theme .project__footer-button {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: 0.3s;
}

.dark-theme .project__card {
  background: var(--dark-container-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.dark-theme .project__card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dark-theme .project__tech span {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.dark-theme .project__links {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
  .projects__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .projects__grid {
    grid-template-columns: 1fr;
  }

  .project__image-container {
    height: 200px;
  }

  .project__content {
    padding: 1.5rem;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.projects__grid {
  animation: fadeInUp 0.6s ease-out forwards;
}

/*==================== ACHIEVEMENTS ====================*/
.achievements__container {
  max-width: 800px;
  margin: 0 auto;
}

.achievements__content {
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: justify;
}

.achievements__list {
  display: grid;
  gap: 1.5rem;
}

.achievements__item {
  position: relative;
  padding-left: 2.5rem;
  line-height: 1.6;
  color: var(--text-color);
}

.achievements__icon {
  position: absolute;
  left: 0;
  top: 0.2rem;
  color: var(--first-color);
  font-size: 1.5rem;
}

/*==================== CONTACT ====================*/
.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem 0;
  font-family: var(--body-font);
}

.contact__container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact__content {
  border-radius: 1.5rem;
  padding: 2rem;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__form-div {
  position: relative;
  margin-bottom: 1.5rem;
}

.contact__form-tag {
  position: absolute;
  top: -0.75rem;
  left: 1.25rem;
  font-size: var(--smaller-font-size);
  padding: 0.25rem 0.5rem;
  background-color: var(--body-color);
  z-index: 10;
}

.contact__form-input {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--text-color-light);
  background: none;
  color: var(--text-color);
  outline: none;
  border-radius: 0.75rem;
  font-size: var(--smaller-font-size);
}

.contact__form-area {
  height: 11rem;
}

.contact__form-area textarea {
  resize: none;
  height: 100%;
}

.button__message {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1rem;
   border: 1px solid var(--first-color);
  color: var(--first-color);
  /* padding: 0.65rem 0.75rem; */
  cursor: pointer;
  border-radius: 2%;
  transition: 0.3s;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 auto;
  font-family: var(--body-font);
}
.button__message {
  border: 1px solid var(--first-color);
  color: var(--first-color);
  background-color: transparent;
   display: inline-flex;
  align-items: center;
  justify-content: center;
    gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  cursor: pointer;
  border-radius: 2%;
  transition: 0.3s;
}
.dark-theme .button__message{
  background-color: transparent;
  color: white;
  border: 1px solid white;
}


.dark-theme .contact__form-input {
  background: var(--dark-container-color);
  border-color: var(--dark-text-color);
  color: var(--dark-text-color);
}

@media (max-width: 768px) {
  .contact__container {
    padding: 0 1.5rem;
  }

  .contact__content {
    padding: 1.5rem;
  }
}

/*==================== FOOTER ====================*/
.footer {
  background-color: var(--first-color);
  padding: 3rem 0;
  text-align: center;
  font-family: var(--body-font);
}

.footer__container {
  max-width: 968px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer__title {
  color: white;
  font-size: var(--h1-font-size);
  margin-bottom: 0.5rem;
}

.footer__subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--normal-font-size);
  margin-bottom: 2rem;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer__social-link {
  color: white;
  font-size: 1.5rem;
  transition: 0.3s;
}

.footer__social-link:hover {
  color: var(--first-color-lighter);
  transform: translateY(-5px);
}

.footer__copy {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--small-font-size);
}

.footer__copy-text {
  margin-bottom: 0.5rem;
}

.footer__heart {
  color: #ff6b6b;
  font-size: 1.2em;
  vertical-align: middle;
}

.dark-theme .footer {
  background-color: var(--first-color);
}

@media screen and (min-width: 768px) {
  .contact__container {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3rem;
  }

  .contact__info {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 992px) {
  .contact__container {
    column-gap: 6rem;
  }
}

.notification-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.notification {
  display: none;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 4px;
  color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s ease;
  position: relative;
  max-width: 300px;
}

.notification.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateX(0);
  opacity: 1;
}

.notification--success {
  background-color: #4CAF50;
}

.notification--error {
  background-color: #F44336;
}

.notification__close {
  background: transparent;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  margin-left: 15px;
  padding: 0 5px;
}

.notification__close:hover {
  opacity: 0.8;
}