:root {
  --primary-color: #1D0B22;
  --secondary-color: #FCF3FF;
  --tertiary-color: #F1D3F9;
  --accent-color: #f8cb74;
  --background-color: #FFFFFF;
  --text-color: #121212;
  --light-text-color: #F8F1F6;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  overflow-x: hidden; 
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden; 
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color); /* Adjust background color as needed */
  z-index: 1000;
  transition: opacity 1s ease;
}

#preloader img {
  width: 100px; /* Adjust width as needed */
  height: auto;
}

#content {
  opacity: 0;
  transition: opacity 1s ease;
}

/* ===================== */
/* ====== Navbar ======= */
/* ===================== */

.header {
  background-color: var(--primary-color);
}

.navbar {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  margin: 0 auto;
}

.nav-link {
  color: var(--secondary-color);
}

.bar {
  width: 30px;
  height: 3px;
  transition: 0.4s;
  background-color: var(--secondary-color); /* Use background-color instead of color */
}

@media only screen and (max-width: 768px) {
  .nav-menu {
    position: absolute;
    left: -100%;
    top: 4rem;
    flex-direction: column;
    background-color: var(--primary-color);
    width: 100%;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
  }

  .nav-menu.active {
    z-index: 1001;
    left: 0;
  }

  .nav-item {
    margin: 2.5rem 0;
  }

  .submenu {
    position: static;
    color: var(--secondary-color);
  }

  .hamburger {
    display: flex;
    color: var(--secondary-color);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
/* ===================== */
/* ====== Hero ======= */
/* ===================== */
.hero-container {
  background-color: #1D0B22;
}

.hero-section {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  height: 100vh;
  background-color: #1D0B22;
  align-items: start;
  overflow: hidden;
  margin-top: -50px; /* Adjust this value as needed */
  max-width: 1728px;
  margin: 0 auto;
  height: auto;
}

.hero-text {
  display: grid;
  grid-column: 2 / 9;
}

.hero-title {
  color: #F8F1F6;
  font-family: 'Open Sans';
  font-size: 127px;
  font-style: normal;
  font-weight: 700;
  line-height: 141px;
  margin-left: 60px;
}

/* CSS for fading animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 0.5; }
}

.fadeIn {
  opacity: 0; /* Initial state */
  animation: fadeIn 0.5s ease-in-out forwards;
}


.hero-subtitle {
  color: #F8F1F6;
  font-family: 'Open Sans';
  font-size: 38px;
  font-style: normal;
  font-weight: 600;
  margin-left: 68px;
}

.hero-description {
  color: #F8F1F6;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  margin-left: 60px;
  line-height: 32.4px;
  animation-delay: 2.5s; 
  margin-top: -12px;
}

.hero-subtitle .cursor {
  display: inline-block;
  background-color: #F8CB74;
  animation: blink 1s infinite;
}

.hero-subtitle .cursor.typing {
  animation: none;
}

@keyframes blink {
  0%, 49% { background-color: #F8CB74; }
  50%, 99% { background-color: transparent; }
  100% { background-color: #F8CB74; }
}

.button-container {
  display: flex;
  margin-left: 60px;
}

.button-container a {
  text-decoration: none; 
}

button {
  padding: 0 25px;
  border-radius: 30px; 
  min-width: 140px;
  height: 57px; 
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: color 0.3s ease-out; 
}

button:after,
button:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%; /* Ensure the hover effect is circular */
  transition: transform 0.5s ease-out;
}

button:after {
  background-color: var(--primary-color);
}

button:before {
  background: var(--accent-color);
}

button span {
  z-index: 1;
}

.about-btn.cta-01 {
  background: var(--accent-color);
  color: var(--primary-color);
  border: 5px solid #F8CB74;
  border-radius: 30px;
}

.project-btn.cta-02 {
  background-color: transparent;
  color: var(--accent-color);
}

.project-btn.cta-02:after {
  background: var(--accent-color);
}

button:hover.cta-01 {
  color: var(--accent-color);
}

button:hover.cta-02 {
  color: var(--primary-color);
}

button:hover:after,
button:hover:before {
  transform: translate(-50%, -50%) scale(1);
}

.about-btn {
  width: 322px;
  height: 57px;
  display: flex;
  justify-content: center;
  border-radius: 30px;
  background: #F8CB74;
  color: #000;
  font-family: 'Open Sans', sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  align-items: center;
  line-height: 32.36px;
  margin-right: 24px;
  cursor: pointer;
  border: none; /* Remove border */
  box-shadow: none; /* Remove box shadow */
  outline: none; /* Remove outline */
  opacity: 0; 
  animation: fadeIn 1s forwards 1s; 
}

.project-btn {
  width: 322px;
  height: 57px;
  display: flex;
  justify-content: center;
  border-radius: 30px;
  border: 5px solid #F8CB74;
  color: #F8CB74;
  background-color: #1D0B22;
  font-family: 'Open Sans', sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  align-items: center;
  line-height: 32.36px;
  cursor: pointer;
  box-shadow: none; 
  outline: none; 
  opacity: 0; 
  animation: fadeIn 2s forwards 2s; 
}

@keyframes fadeIn {
  0% { 
      opacity: 0; 
  }
  100% { 
      opacity: 1; 
  }
}

/* ================================ */
.hero-animation {
  grid-column: span 3;
  display: grid;
  opacity: 0; 
  animation: fadeIn 1s ease-in forwards;
  animation-delay: 0.5s;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}

.container {
  position: relative;
  width: 500px;
  height: 500px;
  margin: 0 auto;
  margin-top: 120px;
}

.cell {
  position: absolute;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svg-illustration {
  width: 120px;
  height: 120px;
}
/* Tablet View */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-section {
    height: 100vh;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .hero-text { 
    grid-column: 1 / 5; 
    margin-left: 32px;
  }

  .hero-title {
    font-size: 64px;
    line-height: 80px;
    margin-left: 40px;
  }

  .hero-subtitle {
    font-size: 27px;
    margin-left: 0;
    margin-left: 40px;
  }

  .hero-description {
    font-size: 16px;
    margin-left: 0;
    margin-left: 40px;
  }

  .button-container {
    flex-direction: row;
    align-items: start;
    margin-left: 0;
    margin-left: 32px;
  }

  .about-btn, .project-btn {
    width: 200px;
    height: 53px;
    font-size: 21px;
    margin: 12px 0;
    margin-right: 16px;
  }

  .hero-animation {
    grid-column: 5 / 9; 
    display: grid;
    margin-top: 0; 
    animation: fadeIn 0.5s ease-in forwards;
    animation-delay: 4s;
    justify-content: center;
    align-items: center;
  }

  .container {
    width: 300px;
    height: 300px;
    position: relative;
    margin-bottom: 40px;
    margin-top: 80px;
  }

  .cell {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center; 
    position: absolute; 
  }

  .svg-illustration {
    width: 60px;
    height: 60px;
    margin: 0;
  }


}

/* Mobile View */
/* ============================ */
@media only screen and (max-width: 768px) {
  
  .hero-section {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    overflow: visible;
    height: auto;
    padding-bottom: 80px;
  }

  .hero-text {
    display: grid;
    grid-column: 1 / 5; /* Ensure it spans all columns in mobile view */
    margin-left: 24px;
  }

  .hero-title {
    color: #F8F1F6;
    font-family: 'Open Sans';
    font-size: 64px; 
    font-style: normal;
    font-weight: 700;
    line-height: 80px;
    margin-left: 16px;
    padding-top: 40px;
  }

  .hero-subtitle {
    font-size: 27px;
    margin-left: 16px;
  }

  .typed-text {
    color: #F8F1F6;
    font-family: 'Open Sans';
    font-size: 27px;
    font-style: normal;
    font-weight: 600;
  }

  .hero-subtitle .cursor {
    display: inline-block;
    background-color: #F8CB74;
    animation: blink 1s infinite;
  }

  .hero-subtitle .cursor.typing {
    animation: none;
  }

  @keyframes blink {
    0%, 49% { background-color: #F8CB74; }
    50%, 99% { background-color: transparent; }
    100% { background-color: #F8CB74; }
  }

  .hero-description {
    color: #F8F1F6;
    font-family: 'Opensans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    margin-left: 16px;
    line-height: 32.4px;
  }

  .button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 0; /* Remove left margin */
  }

  .about-btn {
    width: 290px;
    height: 53px;
    display: flex;
    justify-content: center;
    border-radius: 30px;
    background: #F8CB74;
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    align-items: center;
    line-height: 32.36px;
    margin: 12px;
  }

  .project-btn {
    width: 290px;
    height: 53px;
    display: flex;
    justify-content: center;
    border-radius: 30px;
    border: 5px solid #F8CB74;
    color: #F8CB74;
    background-color: #1D0B22;
    font-family: 'Open Sans', sans-serif;
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    align-items: center;
    line-height: 32.36px;
    margin: 12px;
  }

  .hero-animation {
    grid-column: 2 / 4;
    justify-content: center;
    margin-top: 40px;
  }

  .container {
    width: 200px;
    height: 200px;
    margin-top: 0px;
  }

  .cell {
    width: 100px;
    height: 100px;
  }

  .svg-illustration {
    width: 100px;
    height: 100px;
  }
}

/* ================================== */
/* Scroll Indicator */
.scroll-indicator {
  text-align: center;
  grid-column: span 12;
  align-self: end;
  justify-self: center;
  padding-top: 20px;
  padding-bottom: 20px;
  opacity: 0;
  animation: fadeIn 2s ease-in forwards, jump 2s infinite;
  animation-delay: 3s;
}

.scroll-indicator a {
  display: block;
  color: #F8CB74;
  font-size: 24px;
  text-decoration: none;
}

.scroll-indicator a:hover {
  color: #FFD700;
}

.scroll-indicator img {
  width: 30px;
  height: auto;
}

.scroll-indicator #mouse-scroll {
  display: inline-block;
  margin-top: 10px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
  }
  40% {
      transform: translateY(-10px);
  }
  60% {
      transform: translateY(-5px);
  }
}

@keyframes jump {
  0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
  }
  40% {
      transform: translateY(-20px);
  }
  60% {
      transform: translateY(-10px);
  }
}

/* ================================== */
/* Main Section and Cards */
/* ================================== */

.main {
  grid-column: 2 / span 10;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(373px, 1fr));
  gap: 40px;
  justify-content: center;
  align-items: center;
  margin: 0 auto 80px auto;
  max-width: 1600px;
  justify-items: center;
  max-width: 1400px;
}

.section-heading {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  font-family: 'Open Sans';
  color: var(--text-color);
  font-feature-settings: 'clig' off, 'liga' off;
  font-size: 38px;
  font-weight: 700;
  line-height: 40px;
}
.section-heading h4{
  margin-bottom: 0;

}
.cards {
  grid-column: 2 / span 10;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(373px, 1fr));
  gap: 80px;
  justify-content: center;
  align-items: center;
  margin: 0 auto 80px auto;
  max-width: 1600px;
  justify-items: center; 
}

.card-items {
  width: 100%;
  max-width: 373px;
  height: 504px;
  background-color: var(--secondary-color);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  filter: grayscale(10%);
}

.card-image {
  width: 100%;
  height: 341px;
  border-radius: 24px 24px 0 0;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  border-radius: 30px 30px 0 0;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.card-body {
  padding: 20px;
}

.card-body h5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0px 0 0 24px;
  color: black;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.card-body p {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-color);
}

.card-items:hover {
  background-color: var(--tertiary-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  filter: grayscale(0%);
}

.card-btn:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.tags {
  display: flex;
  flex-wrap: nowrap; /* Ensure tags are on a single line */
  gap: 8px;
  margin: 40px 12px 12px 20px;
  overflow: hidden; /* Hide overflow if the tags exceed the container width */
}

.chip {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px; /* Adjust padding to fit text properly */
  height: 32px;
  font-size: 12px; /* Adjust font size to fit within the chips */
  line-height: 32px;
  border-radius: 16px;
  background-color: var(--tertiary-color);
  color: var(--primary-color);
  cursor: pointer;
  transition: background-color 0.3s;
  border: 0.5px solid lightgray;
  white-space: nowrap; /* Ensure text does not wrap */
}


.chip p {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--primary-color);
}

.card-items:hover .chip {
  background-color: var(--secondary-color);
}
.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Tablet View for Cards */
@media (min-width: 768px) and (max-width: 1320px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 0 24px;
    width: auto;
    max-width: 1398px;
  }

  .card-items {
    width: 100%;
    margin: 0 auto;
  }

  .card-btn {
    width: 143px;
    height: 41px;
    background-color: var(--accent-color);
    border-radius: 24px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Mobile View for Cards */
@media only screen and (max-width: 768px) {
  .cards {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
  }

  .card-items {
    width: 100%;
    max-width: 370px;
    margin: 0 auto;
  }

  .card-btn {
    width: 143px;
    height: 41px;
    background-color: var(--accent-color);
    border-radius: 24px;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ================================== */
/* Design Process Section */
/* ================================== */

.design-process {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #FCF3FF;
  margin-top: 40px;
  padding-bottom: 40px;

}
.design-process h4{
  margin-bottom: 40px;
}
.design-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 120px; 
  width: 100%;

}

.design-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 300px;
  margin: 0 60px 0 60px;
}

.design-item h5 {
  font-family: 'Open Sans';
  color: var(--black-700-black, #121212);
  font-feature-settings: 'clig' off, 'liga' off;
  font-style: normal;
  font-weight: 200;
  line-height: 40px;
  margin-bottom: 40px;
}

.svg-illustration {
  width: 150px;
  height: auto;
}

@media (min-width: 768px) and (max-width: 1024px) {
  h4 {
    font-size: 28px !important; /* Use !important to override other styles */
  }
  .svg-illustration {
    width: 100px;
  }
  .design-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 300px;
    margin: 0 40px 0 40px;
  }
}

@media only screen and (max-width: 768px) {
  .design-items {
    flex-direction: column;
    gap: 40px; /* Adjust gap for smaller screens */
    padding: 0 20px;
  }

  .design-item {
    margin: 0 20px;
    height: auto; /* Allow height to adjust based on content */
  }

  .svg-illustration {
    width: 75px;
    margin-bottom: 20px;
  }

  .design-item h4 {
    font-size: 27px;
    margin-bottom: 20px;
  }
}

/* ================================== */
/* Testimony Section */
/* ================================== */
.testimony {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto 1fr;
  gap: 24px;
  color: var(--black-700-black, #121212);
  font-feature-settings: 'clig' off, 'liga' off;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  padding-top: 40px;
  margin: 12px auto;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 1600px;
  justify-content: center;
  align-items: center;
}

.testimony-img {
  width: 100px; 
  height: 100px;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto; 
}

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

.testimony h4 {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 60px;
}

.testimonial-container {
  grid-column: 2 / span 10;
  overflow: hidden;
  display: flex;
  justify-content: center;
  padding-bottom: 80px;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  animation: ticker 20s linear infinite;
}
.testimonial-track.paused {
  animation-play-state: paused;
}


.testcard-items {
  width: 100%;
  height: auto;
  max-width: 373px;
  background-color: var(--tertiary-color);
  border-radius: 24px;
  padding: 40px;
}

.testimony-body h5 {
  margin-top: 15px;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: black;
}

.testimony-body p {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: lighter;
  color: var(--text-color);
  text-align: justify;
  text-align-last: inter-word;
  line-height: normal;
}

.testimony-body h5{
  margin: 0;
}
.job-title h5{
  background-color: #F8CB74;
  margin: 0;
}
.quote {
  position: relative;
}

.quote-mark {
  position: absolute;
  width: 30px; 
  height: 30px; 
}

.quote-mark img {
  width: 100%;
  height: 100%;
}

.quote-mark-top-left {
  top: -24px; 
  left: -32px; 
}

.quote-mark-bottom-right {
  bottom: -24px; 
  right: -32px; 
}

.testimonial-container {
  position: relative; /* Ensure the container is relative for pseudo-elements */
  overflow: hidden; /* Hide overflow for smooth fade effect */
  display: flex;
  justify-content: center;
  padding-bottom: 80px;
}

.testimonial-container::before,
.testimonial-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px; /* Adjust width based on the desired fade effect */
  pointer-events: none;
  z-index: 10;
}

.testimonial-container::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.testimonial-container::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

/* Existing styles for .testimonial-track */
.testimonial-track {
  display: flex;
  gap: 30px;
  animation: ticker 20s linear infinite;
}
.testimonial-track.paused {
  animation-play-state: paused;
}

/* Ensure testimonials themselves have necessary styles */
.testimonial {
  flex: 0 0 auto;
  text-align: center;
  padding: 10px 20px;
  box-sizing: border-box;
}

/* Add your existing testimonial styles here */
.testcard-items {
  width: 100%;
  height: auto;
  max-width: 373px;
  background-color: var(--secondary-color);
  border-radius: 24px;
  padding: 40px;
}

/* Keyframes for ticker animation */
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}



/* ================================== */
/* Footer */
/* ================================== */

.footer {
  background-color: var(--primary-color);
  grid-gap: 20px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  height: auto;
  justify-content: space-evenly;
  justify-items: center;
  font-family: 'Open Sans';
  font-feature-settings: 'clig' off, 'liga' off;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  color: var(--secondary-color);
}

.footer-container {
  color: #fff;
  display: flex;
  flex-direction: column;
  font-family: 'Open Sans';
  grid-column: 1/span 12;
  justify-content: center;
  align-items: center;
  margin-left: 80px;
  margin-right: 80px;
  margin-top: 50px;
  text-align: center;
  overflow: auto;
  font-feature-settings: 'clig' off, 'liga' off;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
}
.footer-container h3{
  color: var(--secondary-color);

}

.socials {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 1rem;
  color: var(--light-text-color);
}

.socials li {
  margin: 0 10px;
  list-style-type: none; /* Remove bullet points */
}

.socials a {
  display: inline-block;
}
.socials a:hover {
  transform: scale(1.2); /* Increase size slightly on hover */
  color: var(--accent-color); /* Change the color on hover */
}

.socials a:hover i {
  color: var(--accent-color); /* Change the icon color on hover */
}
.contact-me {
  display: flex;
  justify-content: center;
}

.contact-message {
  color: var(--secondary-color);
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}

.copyright-message p {
  color: var(--light-text-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
}
