@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Annie+Use+Your+Telescope&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #e8d6fc85;
}


.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  padding: 20px 80px;
}

.nav-logo h2 {
  font-size: 40px;
  margin-left: -12%;
  color: #764ba2;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  color: #fff;
  transition: transform 0.5s;
}

.nav-links a {
  color: #1a1a1a;
  font-size: 1.4rem;
  font-weight: 600;
  transition: 0.3s ease;
  text-decoration: none;
}

.nav-links a:hover {
  color: #764ba2;
  scale: 1.1;
  border-bottom: 3px solid #764ba2;
  transition: all 0.2s ease;
}

.main-btn {
  padding: 0.5rem 1.1rem;
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.main-btn:hover {
  transform: translateY(-5px);
  background-color: rgb(92, 92, 92);
}

/* Banner */

.home-screen {
  width: 100%;
  padding: 20px 80px 150px 80px;
}

.banner_wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}

.text-section h1 {
  margin-top: 6%;
  width: 600px;
  font-size: 4.2rem;
  font-family: "Roboto", sans-serif;
  line-height: 5.5rem;
  font-weight: 900;
  margin-bottom: 1.1rem;
  color: #0d0d0d;
}

.text-section p {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1.8rem;
  color: rgb(73, 73, 73);
}

.home-btns {
  margin-top: 2.1rem;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  gap: 20px;
}

.home-btn,
.home-btn1 {
  padding: 0.6rem 2rem;
  font-size: 1.2rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  border: none;
}

.home-btn {
  color: #fff;
  background: linear-gradient(45deg, #667eea, #764ba2);
}

.home-btn:hover {
  transform: translateY(-5px);
  background-color: rgb(92, 92, 92);
}

.home-btn1 {
  color: black;
  background-color: #eee;
  border: 1px solid #ccc;
}

.home-btn1:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 3px solid #ff6347;
  color: #ff6347;
  border-radius: 8px;
  font-weight: 600;
}

.label {
  position: absolute;
  font-size: 28px;
  font-family: 'Annie Use Your Telescope', cursive;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  animation: zoomInOut 3s infinite ease-in-out;
}

@keyframes zoomInOut {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.explore {
  top: 12rem;
  right: 40rem;
  rotate: -4deg;
}

.palette {
  top: 20rem;
  right: 44rem;
  rotate: 1deg;
}

.label:hover {
  scale: 1.1;
  cursor: pointer;
}

.arrow-svg {
  width: 40px;
  height: 40px;
}

.laptop-png {
  position: absolute;
  right: 25rem;
  bottom: -10rem;
}

.laptop-png img {
  width: 38rem;
}


.palette-container2 {
  display: flex;
  position: absolute;
  object-fit: cover;
  bottom: 8.1rem;
  left: 6.85rem;
}


.color2 {
  height: 237px;
  width: 97px;
  cursor: pointer;
  background-color: #764ba2;
  animation: multiColorCycle 15s infinite linear alternate-reverse;
}

@keyframes multiColorCycle {

  20% {
    background-color: #C174DD;
  }

  /* Violet */
  25% {
    background-color: #74DDB3;
  }

  /* Aqua */
  30% {
    background-color: #8E2BC3;
  }

  /* Deep purple */
  35% {
    background-color: #2BC38E;
  }

  /* Teal */
  40% {
    background-color: #9B30FF;
  }

  /* Neon violet */
  45% {
    background-color: #30FFD5;
  }

  /* Cyan */
  50% {
    background-color: #FFBB00;
  }

  /* Orange */
  55% {
    background-color: #FF5E00;
  }

  /* Deep orange */
  60% {
    background-color: #FF3D68;
  }

  /* Red-pink */
  65% {
    background-color: #FF7EB3;
  }

  /* Candy pink */
  70% {
    background-color: #FFDB58;
  }

  /* Back to light purple */
}



.delay1 {
  animation-delay: 0s;
}

.delay2 {
  animation-delay: 2s;
}

.delay3 {
  animation-delay: 4s;
}

.delay4 {
  animation-delay: 6s;
}



.palette-laptop {
  width: 100%;
  position: relative;
  right: -120px;
}

.palette-display {
  width: 100%;
  height: 468px;
  border: 8px solid black;
  border-radius: 20px;
  overflow: hidden;
  padding: 10px 20px 20px 10px;
}

.palette-container {
  width: 100%;
  top: 0;
  right: 0;
  height: 800px;
  object-fit: cover;
  display: flex;
  animation: scroll 20s linear infinite alternate;
}

.palette-image img {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  width: 100%;

}

@keyframes scroll {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-40%);
  }
}

/* integration */
.extensions_section {
  padding: 50px 40px;
}

.extension_cards {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;

}

.extension_card {
  background-color: white;
  border-radius: 10px;
  padding: 30px 20px;
  width: 220px;
  text-align: center;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.extension_card:hover {
  transform: translateY(-5px);
  background-color: #e3cff8b2;
  transition: transform 0.3s ease;
}

.icon {
  height: 40px;
  padding: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon1 {
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon2 {
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon3 {
  height: 40px;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon4 {
  height: 40px;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.extension_card h3 {
  padding: 10px 0 10px 0;
  font-size: 1.4em;
  font-weight: bold;
  display: flex;
  text-align: center;
  justify-content: center;
}

.extension_card p {
  padding: 8px 0 0 0;
  font-size: 1.1em;
  font-weight: 400;
  color: #666;
  text-align: center;
  align-items: center;
}


/* generator */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto";
  scroll-behavior: smooth;
}

.generator {
  display: flex;
  align-items: center;
  justify-content: center;
}


.pal-container {
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  width: 1270px;
  height: 40rem;
  margin-bottom: 100px;
  margin-top: 100px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}


.h1-generator {
  text-align: center;
  margin-bottom: 1rem;
  color: #333;
  position: relative;
  padding-bottom: 1rem;
  font-size: 35px
}

.h1-generator::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  width: 26%;
  height: 3px;
  background-color: #667eea;
  border-radius: 2px;
}

.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  /* Optional, for vertical centering */
}

.generate-btn {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  margin-bottom: 2.5rem;
  margin-top: 1rem;
  font-size: 1rem;
}

.generate-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 10px rgba(102, 126, 234, 0.3);
}

.generate-btn:active {
  transform: translateY(0);
}

.palette_container {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.color-box {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s;
}

.color-box:hover {
  transform: translateY(-5px);
}

.color {
  height: 130px;
  cursor: pointer;
}

.color-info {
  background-color: #fff;
  padding: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.5rem;
}

.hex-value {
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 12px;
}

.copy-btn {
  cursor: pointer;
  color: #64748b;
  transition: color 0.2s;
  font-size: 18px;
}

.copy-btn:hover {
  color: #667eea;
}


/* footer */
.site-footer {
  background-color: #1a1a1a;
  color: #ddd;
  padding: 30px 20px;
  font-size: 14px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  /* Increased gap for better spacing */
  max-width: 1200px;
  margin: auto;
  text-align: center;
  /* Ensure text alignment looks centered */
}

.footer-brand,
.footer-links,
.footer-social {
  flex: 1 1 250px;
  /* Ensure even spacing for all sections */
  min-width: 200px;
}


.footer-brand h2 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
}

.footer-links h4,
.footer-social h4 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-social h4 {
  text-align: center;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-icons img {
  height: 25px;
  width: 25px;
  margin: 5px;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  color: #888;
}


/* about */
.about {
  margin: 7.8rem;
}

.about-container {
  display: flex;
  align-items: center;
  background-color: #e3cff8b2;
  padding: 2rem;
  border-radius: 10px;
}

.left-content {
  width: 100%;
  padding-left: 40px;
}

.left-content h2 {
  font-size: 40px;
  color: #1a1a1a;
  font-weight: 500;
}

.left-content button {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  margin-top: 1.5rem;
  font-size: 1rem;
}

.left-content button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 10px rgba(102, 126, 234, 0.3);
}

.right-content img {
  height: 20rem;
  width: 600px;
  max-width: 1200px;
  align-items: center;
  object-fit: cover;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px;
}

/* cards */
.card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding: 30px 20px;
  width: 280px;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.icon {
  font-size: 36px;
  margin-bottom: 18px;
}

.red {
  color: #e63946;
}

.blue {
  color: #457b9d;
}

.green {
  color: #2a9d8f;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #333;
  padding: 6px 0;
}

.card p {
  color: #666;
  font-size: 16px;
  font-weight: 400;
}




/* Media Quries */
@media (max-width: 1440px) {

  .nav-bar {
    padding: 20px 100px;
  }

  .home-screen {
    padding: 80px 40px 140px 80px;
    margin-bottom: 20px;
  }

  .explore {
    padding: 50px 0px 0px 90px;
    margin-right: -50px;
  }

  .palette {
    padding: 50px 0px 0px 90px;
    margin-right: -40px;
  }
}



@media (max-width: 1024px) {
  .nav-bar {
    padding: 20px 80px;
  }

  .main-btn {
    padding: 0.4rem 0.8rem;
    font-size: 1.2rem;
  }

  .text-section h1 {
    font-size: 3.1rem;
    line-height: 4.2rem;
  }

  .text-section p {
    font-size: 1.22rem;
  }

  .home-btn {
    padding: 7px 16px;
    font-size: 1.10rem;
  }

  .home-btn1 {
    padding: 7px 15px;
    font-size: 1.10rem;
  }

  .badge {
    font-size: 0.9rem;
  }

  .banner_left {
    margin-left: -10px;
    margin-top: -100px;
  }

  .palette-laptop {
    height: 468px;
    margin-top: -40px;
    right: 40px;
  }

  .laptop-png {
    top: 180px;
  }

  .laptop-png img {
    width: 30rem;
    padding: 40px 0px;
  }

  .palette-container2 {
    top: 74px;
    left: 86px;
  }

  .color2 {
    height: 11.62rem;
    width: 4.81rem;
  }

  .nav-logo h2 {
    font-size: 2.2rem;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .home-screen {
    padding: 80px 40px 140px 80px;
    margin-bottom: 20px;
  }

  .explore {
    padding: 1px 0px 0px 0px;
    right: 370px;
  }

  .palette {
    padding: 1px 0px 0px 30px;
    right: 370px;
  }

  .pal-container {

    width: 55rem;
    height: 51rem;
  }

  .pal-box {
    width: 800px;
  }

  .card {
    width: 15rem;
  }

  .about {
    display: flex;
    justify-content: center;
    margin: 4.5rem;
  }

  .about-container {
    width: 60rem;
    height: 25rem;
  }

  .about-container img {
    object-fit: contain;
    width: 100%;
    height: 35rem;
    padding: 0.5rem;
  }

  .left-content h2 {
    font-size: 2rem;
  }

  .right-content {
    width: 35rem;
  }

  .left-content button {
    padding: 0.7rem 1.8rem;
  }
}



@media (max-width: 600px) {
  .nav-bar {
    padding: 20px 40px 0 40px;
  }

  .nav-logo h2 {
    font-size: 1.6rem;
  }

  .nav-links a {
    font-size: .9rem;

  }

  .main-btn {
    padding: 0.4rem 0.8rem;
    font-size: 1rem;
  }

  .text-section {
    margin-left: -42px;
  }

  .text-section h1 {
    font-size: 2.2rem;
    line-height: 3rem;
  }

  .text-section p {
    font-size: 0.73rem;
  }

  .home-btns {
    display: flex;
    gap: 1px;
    align-items: flex-start;
    flex-direction: column;
    margin-left: -2.5rem;
  }

  .home-btn {
    padding: 5px 12px;
    font-size: 0.9rem;
  }

  .home-btn1 {
    padding: 5px 12px;
    font-size: 0.9rem;
  }

  .badge {
    margin-left: -2.5rem;
    font-size: 0.7rem;
  }

  .palette-display {
    margin-top: 2rem;
    height: 80%;
    margin-left: -18rem;
  }

  .palette-laptop {
    height: 468px;
    margin-top: -40px;
    right: 40px;
  }

  .laptop-png {
    top: 150px;
    right: 250px;
  }

  .laptop-png img {
    width: 24rem;
  }

  .png {
    margin-right: 200px;
  }

  .palette-container2 {
    top: 67.8px;
    left: 69px;
  }

  .color2 {
    height: 9.24rem;
    width: 3.85rem;
  }

  .home-screen {
    padding: 80px 40px 140px 80px;
    margin-bottom: 20px;
  }

  .label {
    font-size: 1rem;
  }

  .explore {
    padding: 1px 0px 0px 0px;
    right: 270px;
    font-size: 1rem;
  }

  .palette {
    top: 270px;
    right: 270px;
    rotate: 7deg;
    font-size: 1rem;
  }

  .pal-container {
    overflow: hidden;
    margin: auto;
    width: 33rem;
    height: 61.5rem;
  }

  .palette_container {
    gap: 1.25rem;
  }

  .color-box {
    width: 12rem;
    height: 11rem;
  }

  .pal-box {
    display: grid;
    align-items: center;
    width: 500px;
  }

  .card-container {

    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 0.2rem;
  }

  .icon {
    margin-top: -20px;
    font-size: 26px;
  }

  .card {
    width: 10rem;
    height: 10rem;
    font-size: 0.8rem;
  }

  .card h3 {
    margin-top: -5px;
    margin-bottom: 1px;
    font-size: 14px;
    padding: 6px 0;
  }

  .card p {
    font-size: 12px;
  }

  .about {
    display: flex;
    justify-content: center;
    margin: 4.5rem;
  }

  .about-container {
    justify-content: space-between;
    gap: 1rem;
    width: 33rem;
    height: 20rem;
  }

  .about-container img {
    object-fit: contain;
    width: 100%;
    height: 25rem;
    padding: 0.5rem;
  }

  .left-content h2 {
    font-size: 1rem;
  }

  .right-content {

    width: 38rem;
  }

  .left-content{
    margin-left: -2rem;
  }
  .left-content button {
    padding: 0.7rem 1.8rem;
  }

  .extension_cards {
    margin-top: -100px;
  }

  .site-footer{
    height: 25rem;
  }
}

@media (min-width:320px) and (max-width: 599px) {
  .nav-bar {
    padding: 20px 80px;
  }

  .main-btn {
    padding: 0.4rem 0.8rem;
    font-size: 1.2rem;
  }

  .text-section h1 {
    font-size: 3.1rem;
    line-height: 4.2rem;
  }

  .text-section p {
    font-size: 1.22rem;
  }

  .home-btn {
    padding: 7px 16px;
    font-size: 1.10rem;
  }

  .home-btn1 {
    padding: 7px 15px;
    font-size: 1.10rem;
  }

  .badge {
    font-size: 0.9rem;
  }

  .banner_left {
    margin-left: -10px;
    margin-top: -100px;
  }

  .palette-laptop {
    height: 468px;
    margin-top: -40px;
    right: 40px;
  }

  .laptop-png {
    top: 180px;
  }

  .laptop-png img {
    width: 30rem;
    padding: 40px 0px;
  }

  .palette-container2 {
    top: 74px;
    left: 86px;
  }

  .color2 {
    height: 11.62rem;
    width: 4.81rem;
  }

  .nav-logo h2 {
    font-size: 2.2rem;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .home-screen {
    padding: 80px 40px 140px 80px;
    margin-bottom: 20px;
  }

  .explore {
    padding: 1px 0px 0px 0px;
    right: 370px;
  }

  .palette {
    padding: 1px 0px 0px 30px;
    right: 370px;
  }

  .pal-container {

    width: 55rem;
    height: 51rem;
  }

  .pal-box {
    width: 800px;
  }

  .card {
    width: 15rem;
  }

  .about {
    display: flex;
    justify-content: center;
    margin: 4.5rem;
  }

  .about-container {
    width: 60rem;
    height: 25rem;
  }

  .about-container img {
    object-fit: contain;
    width: 100%;
    height: 35rem;
    padding: 0.5rem;
  }

  .left-content h2 {
    font-size: 2rem;
  }

  .right-content {
    width: 35rem;
  }

  .left-content button {
    padding: 0.7rem 1.8rem;
  }
}



@media (max-width: 600px) {
  .nav-bar {
    padding: 20px;
  }

  .nav-logo h2 {
    font-size: 1.2rem;
  }

  .nav-links a {
    font-size: .76rem;
  }
  .nav-links{
    gap: 5px;
  }

  .main-btn {
    display: none;
    padding: 0.4rem 0.8rem;
    font-size: 1rem;
  }

  .text-section h1 {
    margin-left: -15px;
    font-size: 1.8rem;
    line-height: 2rem;
  }

  .text-section p {
    margin-left: -15px;
    font-size: 0.73rem;
    font-weight: 600;
  }

  .home-btns {
    margin-top: -10px;
    display: flex;
    gap: -10px;
    align-items: flex-start;
    flex-direction: column;
    margin-left: -3.5rem;
  }

  .home-btn {
    padding: 5px 12px;
    font-size: 0.9rem;
  }

  .home-btn1 {
    padding: 5px 12px;
    font-size: 0.9rem;
  }

  .badge {
    margin-left: -2.5rem;
    font-size: 0.7rem;
    margin-left: -3.5rem;
  }

  .palette-display {
    margin-top: 2rem;
    height: 80%;
  }

  .palette-laptop {
    height: 400px;
    margin-top: -40px;
    right: 11rem;
  }

  .laptop-png {
    top: 150px;
    right: 250px;
    display: none;
  }

  .laptop-png img {
    width: 24rem;
  }

  .png {
    margin-right: 200px;
  }

  .palette-container2 {
    top: 67.8px;
    left: 69px;
  }

  .color2 {
    height: 9.24rem;
    width: 3.85rem;
  }

  .home-screen {
    padding: 80px 40px 140px 80px;
    margin-bottom: 20px;
  }

  .label {
    display: none;
    font-size: 1rem;
  }

  .explore {
    padding: 1px 0px 0px 0px;
    right: 270px;
    font-size: 1rem;
  }

  .palette {
    top: 270px;
    right: 270px;
    rotate: 7deg;
    font-size: 1rem;
  }

  .pal-container {
    display: grid;
    overflow: hidden;
    width: 18rem;
    height: 38.5rem;
  }

  .palette_container {
    gap: 1.4rem;
    margin-top: -5px;
  }

  .color-box {
    margin-left: 15px;
    width: 12rem;
    height: 5.5rem;
  }

  .pal-box {
    display: grid;
    align-items: center;
    width: 220px;
  }

  .h1-generator{
    text-align: center;
    font-size: 1.3rem;
  }

  .generate-btn{
    font-size: 0.9rem;
  }

  .card-container {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
  }

  .icon {
    margin-top: -20px;
    font-size: 26px;
  }

  .card {

    width: 14rem;
    height: 10rem;
    font-size: 0.8rem;
  }

  .card h3 {
    margin-top: -5px;
    margin-bottom: 1px;
    font-size: 18px;
    padding: 6px 0;
  }

  .card p {
    font-size: 14px;
  }

  .about {
    display: flex;
    justify-content: center;
    margin: 4.5rem;
  }

  .about-container {
    justify-content: space-between;
    gap: 1rem;
    width: 18rem;
    height: 14rem;
  }

  .about-container img {
    object-fit: contain;
    width: 100%;
    margin: 10px 10px;
    padding: 0.1rem;
  }

  .left-content h2 {
    font-size: 0.8rem;
  }

  .left-content{
    margin-left: -3rem;
  }
  .left-content button {
    font-size: 0.7rem;
    padding: 0.3rem 1.8rem;
  }

  .extension_cards {
    margin-top: -150px;
  }

  .site-footer{
    height: 32rem;
  }
}
