/* Extra */

.containers {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  min-height: 100vh;
  margin: 0 auto;
  gap: 1rem;
  background-color: mintcream;

}

.item {
  width: 100%;
  opacity: 0;
  display: flex;
  justify-content: center;
  flex: 1;
  padding: 1rem;
  max-width: 600px;

}

.left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transform: translateX(-100px);
  display: flex;
  flex-direction: column;
  padding: 0.50rem;

}

.left h1 {
  color: var(--clr-accent);
  text-transform: uppercase;
  font-size: clamp(38px, 5vw, 60px);
  font-family: var(--ff-secondary);
  letter-spacing: 5px;
}

.left h2 {
  color: var(--clr-accent);
  text-transform: uppercase;
  font-size: clamp(18px, 2vw, 20px);
  font-family: var(--ff-accent);
}

.left p {
  font-size: clamp(18px, 3vw, 20px);
  line-height: 1.1;
  font-family: var(--ff-accent);
  letter-spacing: 2px;
  color: var(--clr-primary);
  font-weight: 300;
}

.left p span {
  display: block;
}

.name-link {
  color: var(--clr-background);
  font-weight: 400;
  font-size: clamp(18px, 3vw, 20px);
  line-height: 1.3;
  letter-spacing: 1px;
  font-family: var(--ff-primary);

}

.name-link-white {
  color: var(--clr-neutral);
  font-weight: 400;
  font-size: clamp(18px, 3vw, 20px);
  line-height: 1.3;
  letter-spacing: 1px;
  font-family: var(--ff-primary);

}

.left h1 {}

.left h2 {
  font-size: clamp(18px, 3vw, 20px);
  line-height: 1.1;
  font-family: var(--ff-primary);
  letter-spacing: 2px;
  color: var(--clr-fontcolor);
  font-weight: 700;
}

.left p {
  margin: 0 auto;
}

.right {
  display: flex;
  align-items: center;
  transform: translateX(100px);
}



.right img {
  width: 500px;
  border-radius: 20px;
  display: block;
  height: auto;
  background: transparent;
  background-color: var(--clr-background);
  max-width: 100%;


}




/* Buttons */

.css-button-sliding-to-left--sky {
  max-width: 200px;
  min-width: 130px;
  height: 40px;
  color: var(--clr-neutral);
  padding: 5px 10px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
  border-radius: 5px;
  z-index: 0;

  overflow: hidden;
  border: 2px solid var(--clr-accent);
  color: var(--clr-primary);
  font-family: var(--ff-primary);
  text-align: center;
}

.css-button-sliding-to-left--sky:hover {
  color: var(--clr-secondary);
  font-weight: 300;
  transition: all 0.3s ease;
  border: 3px solid var(--clr-accent);
  background: var(--clr-primary);
}

.css-button-sliding-to-left--sky:hover:after {
  width: 100%;
}

.css-button-sliding-to-left--sky:after {
  content: "";
  position: absolute;
  z-index: -1;
  transition: all 0.3s ease;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;

}


.css-button-sliding-to-bottom--sand {
  min-width: 130px;
  height: 40px;
  color: #fff;
  padding: 5px 10px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
  border-radius: 5px;
  z-index: 0;
  background: #fff;
  overflow: hidden;
  border: 2px solid #adb5bd;
  color: #adb5bd;
}

.css-button-sliding-to-bottom--sand:hover {
  color: #fff;
}

.css-button-sliding-to-bottom--sand:hover:after {
  height: 100%;
}

.css-button-sliding-to-bottom--sand:after {
  content: "";
  position: absolute;
  z-index: -1;
  transition: all 0.3s ease;
  left: 0;
  top: 0;
  height: 0;
  width: 100%;
  background: #adb5bd;
}

.extra-ss {
  color: var(--clr-secondary);
}
