:root {
  --primary-color: #f4ed36;
  --bg-section1: 133, 132, 189;
  --bg-section2: 249, 204, 115;
  --bg-section3: 201, 66, 69;
  --bg-rect-back: 172, 79, 152;
  --color-section3: 248, 193, 186;
  --bg-blue-dark: 97, 96, 154;
  --bg-red-card: 193 72 72;
  --bg-footer: 57, 80, 40;
}

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

body {
  height: 100vh;
  background-color: rgb(var(--bg-red-card));
}

a {
  background-color: rgb(var(--color-section3));
  color: black;
  cursor: pointer;
  width: 160px;
  height: 45px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

a .span-mother {
  display: flex;
  font-family: DegularBold;
  font-size: 17px;
  text-transform: uppercase;
  overflow: hidden;
}

a:hover .span-mother {
  position: absolute;
}

a:hover .span-mother span {
  transform: translateY(1.2em);
}

a .span-mother span:nth-child(1) {
  transition: 0.4s;
}

a .span-mother span:nth-child(2) {
  transition: 0.45s;
}

a .span-mother span:nth-child(3) {
  transition: 0.5s;
}

a .span-mother span:nth-child(4) {
  transition: 0.55s;
}

a .span-mother span:nth-child(5) {
  transition: 0.6s;
}

a .span-mother span:nth-child(6) {
  transition: 0.65s;
}

a .span-mother span:nth-child(7) {
  transition: 0.7s;
}

a .span-mother span:nth-child(8) {
  transition: 0.75s;
}

a .span-mother span:nth-child(9) {
  transition: 0.8s;
}

a .span-mother span:nth-child(10) {
  transition: 0.85s;
}

a .span-mother span:nth-child(11) {
  transition: 0.9s;
}

a .span-mother span:nth-child(12) {
  transition: 0.95s;
}

a .span-mother span:nth-child(13) {
  transition: 1s;
}

a .span-mother span:nth-child(14) {
  transition: 1.05s;
}

a .span-mother2 {
  display: flex;
  font-family: DegularBold;
  font-size: 17px;
  text-transform: uppercase;
  position: absolute;
  overflow: hidden;
}

a .span-mother2 span {
  transform: translateY(-1.2em);
}

a:hover .span-mother2 span {
  transform: translateY(0);
}

a .span-mother2 span {
  transition: 0.4s;
}

a .span-mother2 span:nth-child(2) {
  transition: 0.45s;
}

a .span-mother2 span:nth-child(3) {
  transition: 0.5s;
}

a .span-mother2 span:nth-child(4) {
  transition: 0.55s;
}

a .span-mother2 span:nth-child(5) {
  transition: 0.6s;
}

a .span-mother2 span:nth-child(6) {
  transition: 0.65s;
}

a .span-mother2 span:nth-child(7) {
  transition: 0.7s;
}

a .span-mother2 span:nth-child(8) {
  transition: 0.75s;
}

a .span-mother2 span:nth-child(9) {
  transition: 0.8s;
}

a .span-mother2 span:nth-child(10) {
  transition: 0.85s;
}

a .span-mother2 span:nth-child(11) {
  transition: 0.9s;
}

a .span-mother2 span:nth-child(12) {
  transition: 0.95s;
}

a .span-mother2 span:nth-child(13) {
  transition: 1s;
}

a .span-mother2 span:nth-child(14) {
  transition: 1.05s;
}

/* FIN BUTTON */

.section1-bag {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.header-bag {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: max-content;
  margin: 120px 0;
}

.header-bag h1 {
  font-family: "Obviously";
  max-width: 600px;
  margin-bottom: -50px;
  width: min-content;
  text-wrap: wrap;
  font-stretch: ultra-expanded;
  color: rgb(var(--color-section3));
  transform: scaleY(0.8) scaleX(3);
  font-weight: 900;
  font-size: calc(13vw);
  letter-spacing: 0px;
  text-transform: uppercase;
  line-height: 11vw;
  padding: 10px 10px 100px 10px;
  text-align: center;
}

.btn-bag {
  text-decoration: none;
  position: relative;
  border: 3px solid;
  border-color: black;
  border-radius: 5px;
}

.btn-test {
  position: relative;
  width: max-content;
  height: max-content;
}

.test {
  position: absolute;
  overflow: hidden;
  transition: all 250ms ease-in-out;
  background-color: rgb(var(--color-section3));
  border: 3px solid;
  border-color: black;
  border-radius: 5px;
  width: 160px;
  height: 45px;
  left: 7px;
  bottom: 7px;
}

.btn-test:hover .test {
  transition: all 250ms ease-in-out;
  left: 5px;
  bottom: 5px;
}

@media (max-width: 700px) {
  .header-bag h1 {
    transform: scaleY(1) scaleX(1.1);
    font-weight: 700;
    line-height: 120px;
    font-size: 150px;
  }
}
