/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3rem;
  /*========== Colors ==========*/
  --hue: 3610;
  --sat: 98%;
  --first-color: hsl(var(--hue), var(--sat), 60%);
  --first-color-light: hsl(var(--hue), var(--sat), 85%);
  --first-color-lighten: hsl(220deg 7% 16%);
  --first-color-alt: hsl(var(--hue), var(--sat), 53%);
  --title-color: hsl(240deg 4% 95%);
  --text-color: hsl(240deg 4% 95%);
  --text-color-light: hsl(var(--hue), 4%, 65%);
  --body-color: hsl(204deg 8% 13%);
  --container-color: rgb(250, 248, 248);
  --scroll-bar-color: hsl(var(--hue), 4%, 85%);
  --scroll-thumb-color: hsl(var(--hue), 4%, 75%);
  /*========== Font and typography ==========*/
  --body-font: 'Poppins', sans-serif;
  --biggest-font-size: 2rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1.125rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  /*========== Font weight ==========*/
  --font-semi-bold: 600;
  --font-bold: 700;
  /*========== Margenes ==========*/
  --mb-0-5: .5rem;
  --mb-0-75: .75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 3rem;
    --h2-font-size: 1.75rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
*, ::before, ::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

html, body {
  position: relative;
  overflow-x: hidden;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: hsl(30deg 2% 19%);
  color: var(--text-color);
  transition: .5s;
  min-height: 100vh;
}

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

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

/*=============== THEME ===============*/ 
/*========== Variables Dark theme ==========*/
body.dark-theme {
  --first-color-light: hsl(var(--hue), var(--sat), 75%);
  --title-color: hsl(var(--hue), 4%, 95%);
  --text-color: hsl(var(--hue), 4%, 80%);
  --body-color: hsl(var(--hue), 8%, 13%);
  --container-color: hsl(var(--hue), 8%, 16%);
  --scroll-bar-color: hsl(var(--hue), 4%, 32%);
  --scroll-thumb-color: hsl(var(--hue), 4%, 24%);
}

/*========== Button Dark/Light ==========*/
.change-theme {
  position: absolute;
  right: 1.5rem;
  top: 2.2rem;
  color: var(--title-color);
  font-size: 1.8rem;
  cursor: pointer;
}

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

/*=============== REUSABLE CSS CLASSES ===============*/
.section {
  padding: 4.5rem 0 1rem;
}

.rent_long_section {
  padding: 4.5rem 0 3.5rem;
}

.contact_section {
  padding: 4.5rem 0 3.5rem;
}

.section__title, .section__title-center {
  font-size: var(--h2-font-size);
  color: var(--title-color);
  text-align: center;
  margin-bottom: var(--mb-1);
}

.svg__blob {
  fill: var(--first-color-light);
}

.rent_long_img {
  width: 300px;
  justify-self: center;
}

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

/*
 {
  max-width: 968px;
  margin-left: 0;
  margin-right: 0;
  margin-top: 3rem;
}
*/
.grid {
  display: grid;
  gap: 1.5rem;
}

.contact_grid {
  display: grid;
  gap: 1.5rem;
  margin-left: 3rem;
  margin-right: 3rem;
}

/*=============== HEADER ===============*/
.header {
  width: 100%;
  background-color: #000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  transition: .5s;
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo_mobi {
  margin-top: 4px;
  margin-bottom: 4px;
  background-color: #ffff4d;
  color: #000;
  padding: 0.5rem 1.7rem;
  border-radius: 20px;
  font-weight: var(--font-semi-bold);
  transition: .3s;
}

@media screen and (max-width: 800px) {
  .nav__menu {
    position: fixed;
    background-color: hsl(0deg 0% 0%);
    box-shadow: 0 0 4px rgb(0 0 0);
    padding: 2.5rem 0;
    width: 90%;
    top: -100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: .4s;
    border-radius: 2rem;
    z-index: var(--z-fixed);
  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.5rem;
}

.nav__link, .nav__logo, .nav__toggle {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

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

/* Show menu */
.show-menu {
  top: calc(var(--header-height) + 1rem);
}

/* Active link */
.active-link {
  position: relative;
}

.active-link::before {
  content: '';
  position: absolute;
  bottom: -.75rem;
  left: 45%;
  width: 5px;
  height: 5px;
  background-color: var(--title-color);
  border-radius: 50%;
}

/* Change background header */
.scroll-header {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/*=============== HOME ===============*/
.home {
  background: hsl(40deg 4% 19%);
  margin-top: 80px;
}

.home__data {
width: 45rem;
margin-left: auto;
margin-right: auto;
}

.home__container {
  max-height: 383px;
  row-gap: 3rem;
}

.home__title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-bold);
  margin-bottom: var(--mb-0-75);
  text-align: right;
  float: left;
}

.home__description {
  margin-bottom: var(--mb-2);
  padding-left: 4rem;
  max-width: 235px;
  float: left;
  padding-top: var(--mb-2);
}

.content_img{
    max-width: 145%;
    margin-left: -45%;
    margin-bottom: -10%;
}

.home_data_button {
  text-align: center;
}

/*=============== BUTTONS ===============*/
.button {
  display: inline-block;
  background-color: #ffff4d;
  color: #000000;
  padding: 0.5rem 1.7rem;
  border-radius: 20px;
  font-weight: var(--font-semi-bold);
  transition: .3s;
}

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

.button__header {
  display: none;
}

.button-link {
  background: none;
  padding: 0;
  color: var(--title-color);
}

.button-link:hover {
  background-color: transparent;
}

.button-flex {
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  padding: .75rem 1rem;
}

.button__icon {
  font-size: 1.5rem;
}

/*=============== RENT_SHORT ===============*/
.rent_short {
  background: hsl(0deg 0% 0%);
}

.rent_buttons {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  gap: .5rem;
}


.rent_short_description {
  margin-bottom: var(--mb-1-5);
}

.rent_short_container {
  padding-bottom: 8rem;
  background: hsl(0deg 0% 0%);
  gap: 2.5rem;
}

.rent_short_data {
  text-align: center;
}

/*=============== RENT_LONG ===============*/
.rent_long{
  background: hsl(215deg 47% 25%);  
}

.rent_long_description {
  margin-bottom: var(--mb-1-5);
}

.rent_long_container {
  background: hsl(0deg 0% 0%);
  gap: 2.5rem;
}

.rent_long_data {
  text-align: center;
}

/*=============== RENT IMG ===============*/
.rent__container {
  min-height: 350px;
  background-image: url('backgrund_rent3.png');
  background-size: cover;
}

.rent_img{
  background: hsl(0deg 1% 19%);
} 

.section_rent_img{
  padding: 0;
}

/*=============== FLOAT ===============*/

.services__container {
  background: hsl(0deg 1% 19%);
  padding-top: 1rem;
}

.services__data {
  display: grid;
  row-gap: 1rem;
  background-color: var(--container-color);
  box-shadow: 0px 2px 6px hsla(var(--hue), 100%, 15%, 0.15);
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  text-align: center;
}

.services__img {
  width: 135px;
  justify-self: center;
  margin-bottom: var(--mb-0-5);
}

.offer {

  margin-left: auto;
  margin-right: auto;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  
}

@media screen and (max-width: 767px) {
  .offer{
    display: block;
  }
}

.content_offer {
  padding: 1.5rem;
  max-width: 100%;
  
}

.card-container {
  
  
  position: relative;
  color: #fff;
  min-width: auto;
  height: 360px;
  transform-style: preserve-3d;
}

.card-face {
  box-shadow: 0px 2px 6px hsla(var(--hue), 100%, 15%, 0.15);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem 1rem;
  backface-visibility: hidden;
  transition: 0.4s;
  border-radius: 30px;
}

.face-1 {
  /*background-image: linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.05)
  );*/
  transform-origin: right;
  background-color: rgba(255, 255, 255, 0.05);
}

.face-2 {
  /*background-image: linear-gradient(
    60deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.05)
  );*/
  transform-origin: left;
  transform: translateX(100%) perspective(1000px) rotateY(100deg);
  background-color: rgba(255, 255, 255, 0.05);
}

.content_offer:hover .face-1 {
  transform: translate(-100%) perspective(1000px) rotateY(-100deg);
}

.content_offer:hover .face-2 {
  transform: translate(0%) perspective(0px) rotateY(0deg);
}

.logo {
  width: 50px;
  transform: translateZ(40px);
  transform-style: preserve-3d;
}

.face-1 .top-part > h2 {
  text-transform: uppercase;
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 2px;
  margin: 0.4rem 0 0.6rem;
  transform: translateZ(50px);
  transform-style: preserve-3d;
}

.shoe-info {
  display: flex;
  align-items: center;
}

.shoe-new {
  margin-right: 0.8rem;
  padding: 0.3rem 0.6rem;
  background-color: #fff;
  color: red;
  font-weight: 400;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  transform: translateZ(40px);
  transform-style: preserve-3d;
}

.shoe-year {
  color: #eee;
  font-size: 1.05rem;
  transform: translateZ(40px);
  transform-style: preserve-3d;
}

.bottom-part {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shoe-price {
  font-weight: 400;
  font-size: 2.3rem;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 0.95;
  display: flex;
  transform: translateZ(45px);
  transform-style: preserve-3d;
}

.shoe-price span {
  font-size: 1.4rem;
  margin-right: 0.2rem;
}

.right-arrow {
  width: 35px;
  padding-top: 0.3rem;
  transform: translateZ(45px);
  transform-style: preserve-3d;
}

.right-arrow img {
  filter: invert(1);
  animation: move 1s infinite ease alternate;
}

@keyframes move {
  from {
    transform: translateX(-12px);
  }
  to {
    transform: translateX(-3px);
  }
}

.header_offer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.heading {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.3rem;
  font-family: "Roboto Condensed", sans-serif;
  margin-top: 0.5rem;
  transform: translateZ(35px);
  transform-style: preserve-3d;
}

.wish {
  color: #fff;
  font-size: 1.4rem;
  transform: translateZ(30px);
  transform-style: preserve-3d;
}

.features {
  list-style: none;
  margin-bottom: 1rem;
  color: #eee;
  font-weight: 300;
  transform: translateZ(40px);
  transform-style: preserve-3d;
}

.features li {
  margin-bottom: 0.3rem;
}

.color-wrap {
  display: flex;
  align-items: center;
  transform: translateZ(40px);
  transform-style: preserve-3d;
}

.color-wrap > span {
  font-weight: 600;
  font-size: 1rem;
  margin-right: 1.3rem;
  transform: translateZ(40px);
  transform-style: preserve-3d;
}

.colors {
  display: flex;
  align-items: center;
}

.color {
  display: inline-block;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  margin-right: 0.6rem;
  cursor: pointer;
  transition: 0.3s;
}

.color.blue {
  background-color: #2980b9;
  border: 4.5px solid #2980b9;
}

.color.black {
  background-color: #333;
  border: 4.5px solid #333;
}

.color.white {
  background-color: #ccc;
  border: 4.5px solid #ccc;
}

.color.active {
  border: 4.5px solid #fff;
}

.color:hover {
  transform: scale(1.1);
}

.buy-wrap {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: flex-end;
}

.buy {
  display: inline-block;
  padding: 0.5rem 1.7rem;
  background-color: #ffff4d;
  border-radius: 20px;
  color: #000;
  transition: background-color 0.3s, opacity 0.7s !important;
  transform: translateZ(45px);
  transform-style: preserve-3d;
}

.buy i {
  font-size: 0.9rem;
}

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

.face-1 .hide {
  opacity: 1;
  transition: 0.7s;
}

.face-2 .hide {
  opacity: 0;
  transition: 0.7s;
}

.content_offer:hover .face-1 .hide {
  opacity: 0;
}

.content_offer:hover .face-2 .hide {
  opacity: 1;
}

.shoe-image-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: -20px;
  left: 0;
  z-index: 3;
  transform-style: preserve-3d;
  pointer-events: none;
}

.shoe-img {
  position: absolute;
  width: 110%;
  top: 55%;
  left: 67%;
  transform-style: preserve-3d;
  transform: translate(-45%, -55%) translateZ(200px);
  /*animation: float 2s alternate ease-in-out infinite;*/
  transition: 0.3s;
}

@keyframes float {
  0% {
    transform: translateX(calc(-45% - 5px)) translateY(calc(-55% - 5px))
      translateZ(200px);
  }

  100% {
    transform: translateX(calc(-45% + 5px)) translateY(calc(-55% + 5px))
      translateZ(400px);
  }
}

.shoe {
  padding-top: 100px;
    transform: rotate(-3deg);
  transition: 0.4s;
}

.content_offer:hover .shoe-img {
  width: 100%;
  /*left: 45.5%;*/
  /*top: 67%;*/
}

.content_offer:hover .shoe {
  transform: rotate(-1deg);
  /*margin-bottom: 55px;*/

}

@media (max-width: 550px) {
  .content_offer {
    padding: 10px 10px 20px 10px;
  }
}




/*=============== TAXI RENT ===============*/
.taxi_container {
  gap: 2.5rem;
}

.taxi_data {
  text-align: center;
}

.taxi_description {
  margin-bottom: var(--mb-1-5);
}
/*=============== CONTACT ===============*/
.contact {
  background: linear-gradient( 
    -45deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05) );
}

.contact__container {
  padding-bottom: 1rem;
}

.contact__description {
  text-align: center;
}

.contact__content {
  top: 0;
  row-gap: .75rem;
}

.contact_info {
  margin-top: -50%;
}

.contact__address {
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.contact__information {
  font-weight: initial;
  color: var(--text-color);
}
.contact_map {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.google-maps { 
  width: 100%;
  height: 385px;
  border: 0;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
   }

/*=============== FOOTER ===============*/
.footer {
  background-color: var(--first-color-lighten);
  width: 100%;
}

.footer__container {
  row-gap: 2rem;
}

.footer__logo, .footer__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-75);
}

.footer__logo {
  display: inline-block;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.footer__description, .footer__link {
  font-size: var(--small-font-size);
}

.footer__links {
  display: grid;
  row-gap: .5rem;
}

.footer__link {
  color: var(--title-color);
}

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

.footer__social-link {
  font-size: 1.25rem;
  color: var(--title-color);
}

.footer_copy {
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: var(--smaller-font-size);
  color: var(--text-color);
  padding: 4px;
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  background: #ffff4d;
  right: 1rem;
  bottom: -20%;
  display: inline-flex;
  padding: .3rem;
  border-radius: .25rem;
  z-index: var(--z-tooltip);
  opacity: .8;
  transition: .4s;
}

.scrollup:hover {
  background-color: #ffff4d;
  opacity: 1;
}

.scrollup__icon {
  font-size: 1.25rem;
  color: #000;
}

/* Show Scroll Up*/
.show-scroll {
  bottom: 3rem;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: .6rem;
  border-radius: .5rem;
  background-color: var(--scroll-bar-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb-color);
  border-radius: .5rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--text-color-light);
}

/*=============== MEDIA QUERIES ===============*/
/* For small devices */
@media screen and (max-width: 360px) {
  .nav__logo {
    display: none;
  }
  .home__description {
    max-width: 220px;
  }
  .rent_long_img {
    width: 100%;
  }
  .section {
    padding: 3.5rem 0 1rem;
  }
  .rent_long_section {
    padding: 3.5rem 0 3rem;
  }
  .contact_section {
    padding: 3.5rem 0 3rem;
  }
  .services__img {
    width: 100px;
  }
  .app__buttons {
    grid-template-columns: max-content;
  }
  .rent_buttons {
    grid-template-columns: max-content;
  }
}

/* For medium devices */
@media screen and (min-width: 360px) {
  .nav__logo {
    display: none;
  }
}

/* For medium devices */
@media screen and (min-width: 576px) {
  .nav__logo {
    display: none;
  }
 
  .home__description {
    max-width: 220px;
  }
  .content__img
   {
    width: 100%;
  }
  .section__title-center {
    text-align: initial;
  }
  .home__container,
  .rent_short_container,
  .rent_long_container,
  .services__container,
  .taxi_container,
  .contact__container,
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
  .home__img {
    order: 1;
  }
  .home__container,
  .rent_short_container,
  .rent_long_container,
  .taxi_container,
  .contact__container {
    align-items: center;
  }
  .home_data_button,
  .rent_short_data,
  .rent_long_data,
  .taxi_data,
  .contact__description {
    text-align: initial;
  }
  .rent_short_img,
  .app__img {
    order: -1;
  }
}

@media screen and (min-width: 767px) {
  .nav__logo {
    display: none;
  }
  .home__description {
    max-width: 250px;
  }
  body {
    margin: 0;
    width:100%;
    overflow-x:hidden;
    overflow-y:hidden;
  }
  .section {
    padding: 6rem 0 6rem;
  }
  .rent_long_section {
    padding: 6rem 0 4rem;
  }
  .contact_section {
    padding: 4rem 0 2rem;
  }
  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }
  .nav__list {
    flex-direction: row;
    column-gap: 2.5rem;
  }
  .nav__toggle {
    display: none;
  }
  .change-theme {
    position: initial;
  }
  .home__container {
    padding: 0%;
  }
  .app__buttons {
    justify-content: initial;
  }
  .rent_buttons {
    justify-content: initial;

  }
}

/* For large devices */
@media screen and (min-width: 968px) {
  .nav__logo {
    display: block;
  }
 
  .nav__logo_mobi {
    display: none;
  }
  .button__header {
    display: block;
  }
  .rent_long_img {
    width: 470px;
  }
  .rent_short_container,
  .rent_long_container,
  .taxi_container,
  .contact__container {
    column-gap: 6rem;
  }
  .contact__container {
    opacity: 100%;
  }
  .footer__container {
    grid-template-columns: repeat(5, 1fr);
  }
  .footer__social {
    align-items: flex-start;
  }
  .footer__social-link {
    font-size: 1.45rem;
  }
}

@media screen and (min-width: 1024px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }

  .container_img {
    max-width: 968px;
    margin-left: auto;
    margin-right: auto;
    
  }
  .home__img {
    width: 540px;
  }
  .home__description {
    max-width: 330px
  }
  .footer__container {
    column-gap: 3rem;
  }
  .scrollup {
    right: 2rem;
  }
}


/* nowe  */



.contener5{
  margin: 0 auto 50px;
  width: 100%;
  max-width: 500px;
  padding: 10px;
  border-bottom: 0px solid #e7ecf1;
  background: #fff;
  box-shadow: 6px 5px 19px 2px #3d3d3d;
}
.read-more-state {
  display: none;
}
.read-more-target {
  opacity: 0;
  max-height: 0;
  font-size: 0;
}

.read-more-state:checked ~ .read-more-wrap .read-more-target {
  opacity: 1;
  font-size: inherit;
  max-height: 999em;
}

.read-more-state ~ .read-more-trigger:before {
  content: 'Więcej..';
}

.read-more-state:checked ~ .read-more-trigger:before {
  content: 'Zwiń';
}

.read-more-trigger {
  margin-top: 25px;
  display: inline-table;
  background-color: #ffff4d;
  color: #000000;
  padding: 0.5rem 1.7rem;
  border-radius: 20px;
  font-weight: var(--font-semi-bold);
}
.read-more-trigger:hover {

 background-color: var(--first-color-alt);
}

.opis_produktu {
  margin-top: -10%;
 margin-right: 10%;
 margin-left: 0%;
 margin-bottom: 10%;
 font-size: 1rem;
}

.show-text {
  display: none;
}

.show-text:target {
  display: block;
}

.angrycode {
  width: 0.7rem;

  
}

/*========== 404 Page ==========*/

.error404_container {
  margin-left: auto;
  margin-right: auto;
  margin-top: 14rem;
  margin-bottom: 10rem;
  background-color: hsl(var(--hue), 4%, 24%);
  border: hsl(var(--hue), 4%, 24%) solid 20px;
  border-radius: 15px;
  width: max-content;
  filter: drop-shadow(7px 7px 10px rgb(27, 27, 27));
}

.error404_data {
  width: fit-content ;
  padding-top: 2rem;
  padding-bottom: 4rem;
  margin-left: auto;
  margin-right: auto;
}

.error404_title {
  width: fit-content;
  padding-bottom: var(--mb-2);
  filter: drop-shadow(2px 2px 10px rgb(27, 27, 27));
  margin-left: auto;
  margin-right: auto;
}

.error404_description {
  width: fit-content;
  filter: drop-shadow(2px 2px 10px rgb(34, 34, 34));
  margin-left: auto;
  margin-right: auto;
}

.error404_image {
  width: 690px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 2rem;
}

.error404_wall_image {
  filter: drop-shadow(3px 3px 10px rgb(27, 27, 27));
  float: left;
}

.error404_car_image {
  filter: drop-shadow(3px 3px 10px rgb(27, 27, 27));
}

.error404_footer {
  position: sticky;
  top: 100%;
  background-color: hsl(204deg 8% 13%);
  filter: drop-shadow(-1px 0px 10px rgb(27, 27, 27));
}