* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  font-family: "Futura-CondensedExtraBold", Futura, sans-serif;
  box-sizing: border-box;
}

body {
  display: flex;
}
.nike-logo {
  height: 2.2rem;
  user-select: none;
}

.shows-img {
  width: 50rem;
  position: absolute;
  right: 30.1%;
  top: 29%;
  margin: -35px -35px 0 0;
  user-select: none;
  transition: all 0.5s ease-in-out;
}

.left-content {
  display: flex;
  background-color: rgba(255, 255, 255, 255);
  padding: 3rem;
  width: 50%;
  flex-direction: column;
  justify-content: space-between;
}

.right-content {
  background-color: rgba(242, 185, 190, 255);
  padding: 3rem;
  height: 100vh;
  width: 50%;
  transition: all 0.5s ease-in-out;
}

.nav-btns {
  display: flex;
  align-items: flex-end;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  transition: all 0.5s ease-in-out;
}

.nav-links > a {
  color: rgba(47, 28, 27, 255);
  user-select: none;
  font-weight: bold;
  font-size: 1.3rem;
  transition: all 0.5s ease-in-out;
}

.nav-links > a:hover {
  cursor: pointer;
  text-decoration: underline;
}

.material-icons:hover {
  cursor: pointer;
}

.main-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 12rem;
}

.main-txt {
  color: rgba(32, 33, 33, 255);
  font-weight: bold;
  font-size: 4rem;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}

.price {
  display: flex;
  justify-content: flex-start;
  margin-top: 3rem;
  color: rgba(32, 33, 33, 255);
  font-size: 3.5rem;
  font-weight: bold;
}

.dots {
  z-index: 1;
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  width: 8rem;
}

.dot {
  cursor: pointer;
  height: 30px;
  width: 30px;
  display: flex;
  background-color: rgb(255, 0, 0);
  border-radius: 50%;
  border: 3px solid rgb(255, 255, 255);
  transition: all 0.5s ease-in-out;
}

.dot-selected {
  border-radius: 0.5rem;
  box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.205),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  height: 34px;
  width: 34px;
}

#dot-pink {
  background-color: rgba(242, 185, 190, 255);
}

#dot-blue {
  background-color: rgba(58, 255, 228, 255);
}

#dot-red {
  background-color: rgba(255, 65, 37, 255);
}
.buy-btn {
  margin-top: 3rem;
  color: rgba(32, 33, 33, 255);
  padding: 1.3rem 1.3rem;
  background-color: transparent;
  color: #111827;
  font-size: 0.975rem;
  font-weight: 600;
  line-height: 1.25rem;
  border: 0;
  border-radius: 0.4rem;
  box-shadow: 0 0px 2px 0 rgb(0, 0, 0), 0 2px 2px 0 rgba(0, 0, 0, 0.06);
  user-select: none;
  transition: all 0.2s ease-in-out;
}

.buy-btn:hover {
  color: #ffffff;
  cursor: pointer;
  background-color: rgb(35, 38, 41);
}

.pn-btn {
  display: flex;
  width: 20rem;
  justify-content: space-between;
  transition: all 0.5s ease-in-out;
}

.pn-btn > a {
  color: rgba(47, 28, 27, 255);
  font-size: 1.6rem;
  font-weight: bold;
  user-select: none;
}

.pn-btn > a:hover {
  text-decoration: underline;
}
