main {
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  place-items: center;
  gap: 6%;
  padding-top: 100px;
  display: grid;
}

main > a {
  height: 110%;
  width: 85%;
  color: #fff;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  transition: all .5s;
  display: flex;
}

main > a:hover {
  transition: all .5s;
  transform: scale(1.1);
}

main > a > img {
  width: 100%;
  height: 100%;
  z-index: 1;
  cursor: pointer;
}

main > a > h2 {
  color: #5f9ea0;
  cursor: pointer;
  padding-top: 20px;
  font-weight: 400;
}

main > a > h1 {
  padding-top: 10px;
  font-size: 30px;
}

.selected {
  color: #fff;
  grid-template: 10% 1fr 10% / 10% 1fr 10%;
  display: grid;
  position: relative;
}

.item-info {
  flex-direction: column;
  grid-area: 2 / 2 / 3 / 3;
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.item-info > img {
  width: 45%;
  height: 70%;
}

.item-info > p {
  width: 45%;
}

.btns-buy {
  height: 40px;
  width: 400px;
  grid-area: 3 / 2 / 4 / 3;
  justify-content: space-around;
  place-self: center;
  display: flex;
}

.btns-buy * {
  cursor: pointer;
  width: 150px;
  height: 50px;
  background-color: var(--beautiful-blue-color);
  border: 3px solid #000;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  font-family: monospace;
  transition: all .6s;
}

.btns-buy > .add-to-cart {
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.add-to-cart:hover {
  transition: all .6s;
  transform: scale(1.1)translateX(20px);
}

.add-and-pay:hover {
  transition: all .6s;
  transform: scale(1.1)translateX(-20px);
}

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

:root {
  --light-gray-color: #dddbde;
  --light-steel-color: #aed6ff;
  --dark-gray-color: #656e77;
  --dark-steel-color: #000;
  --beautiful-blue-color: #66fcf1;
  --dark-beautiful-blue-color: #1aa49b;
}

html, body {
  width: 100%;
  height: 100%;
  background-color: #000;
}

#root {
  width: 100%;
  height: 100%;
  grid-template-rows: 80px 1fr;
  font-family: monospace;
  display: grid;
}

nav {
  background-color: var(--dark-steel-color);
  color: var(--dark-beautiful-blue-color);
  white-space: nowrap;
  grid-template-columns: repeat(8, 1fr);
  place-items: center;
  column-gap: 50px;
  font-size: 20px;
  display: grid;
}

nav > a {
  transition: all .7s;
}

nav > a:hover {
  color: var(--beautiful-blue-color);
  transition: all .7s;
  transform: scale(1.1)translateX(10px);
}

.main-link {
  grid-column: 2 / 5;
  font-size: 25px;
}

a {
  color: inherit;
  text-decoration: none;
}

.App {
  width: 100%;
  height: 100%;
  grid-template-rows: 15% 85%;
  display: grid;
  position: relative;
}

.App:after {
  width: 100%;
  height: 100%;
  content: "";
  filter: grayscale(10%) brightness(20%) contrast(95%);
  background-image: url("background.7f861ecb.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  right: 0;
}

.confident-text {
  z-index: 1;
  color: var(--beautiful-blue-color);
  grid-row: 2 / 3;
  grid-template-rows: 200px 200px;
  padding-left: 10%;
  display: grid;
}

.confident-text > h2 {
  font-size: 3.2rem;
}

.confident-text > p {
  width: 70%;
  font-size: 2rem;
}

.about {
  color: #fff;
}

.browse-a {
  grid-template-columns: repeat(5, 1fr);
  display: grid;
}

.toShop {
  width: 300px;
  height: 80px;
  color: #fff;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  text-shadow: 0 3px 5px #00000040;
  white-space: nowrap;
  background: url("waves.5475c394.png") 0 -100% repeat-x;
  border: 7px solid #000;
  border-radius: 30px;
  grid-column: 1 / 2;
  place-self: center end;
  font-size: 1.9rem;
  font-weight: bold;
  transition: all 1.2s;
}

.toShop:hover {
  background-position: 300% 100%;
  transition: all 1.2s;
  transform: translateX(20px);
}

.pop {
  cursor: pointer;
  background-color: var(--light-gray-color);
  width: 300px;
  height: 30px;
  z-index: 3;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  display: flex;
  position: fixed;
  bottom: 0;
  right: 10%;
}

.style-nav {
  color: var(--beautiful-blue-color);
}

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

:root {
  --light-gray-color: #dddbde;
  --light-steel-color: #aed6ff;
  --dark-gray-color: #656e77;
  --dark-steel-color: #000;
  --beautiful-blue-color: #66fcf1;
  --dark-beautiful-blue-color: #1aa49b;
}

html, body {
  width: 100%;
  height: 100%;
  background-color: #000;
}

#root {
  width: 100%;
  height: 100%;
  grid-template-rows: 80px 1fr;
  font-family: monospace;
  display: grid;
}

nav {
  background-color: var(--dark-steel-color);
  color: var(--dark-beautiful-blue-color);
  white-space: nowrap;
  grid-template-columns: repeat(8, 1fr);
  place-items: center;
  column-gap: 50px;
  font-size: 20px;
  display: grid;
}

nav > a {
  transition: all .7s;
}

nav > a:hover {
  color: var(--beautiful-blue-color);
  transition: all .7s;
  transform: scale(1.1)translateX(10px);
}

.main-link {
  grid-column: 2 / 5;
  font-size: 25px;
}

a {
  color: inherit;
  text-decoration: none;
}

.App {
  width: 100%;
  height: 100%;
  grid-template-rows: 15% 85%;
  display: grid;
  position: relative;
}

.App:after {
  width: 100%;
  height: 100%;
  content: "";
  filter: grayscale(10%) brightness(20%) contrast(95%);
  background-image: url("background.7f861ecb.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  right: 0;
}

.confident-text {
  z-index: 1;
  color: var(--beautiful-blue-color);
  grid-row: 2 / 3;
  grid-template-rows: 200px 200px;
  padding-left: 10%;
  display: grid;
}

.confident-text > h2 {
  font-size: 3.2rem;
}

.confident-text > p {
  width: 70%;
  font-size: 2rem;
}

.about {
  color: #fff;
}

.browse-a {
  grid-template-columns: repeat(5, 1fr);
  display: grid;
}

.toShop {
  width: 300px;
  height: 80px;
  color: #fff;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  text-shadow: 0 3px 5px #00000040;
  white-space: nowrap;
  background: url("waves.5475c394.png") 0 -100% repeat-x;
  border: 7px solid #000;
  border-radius: 30px;
  grid-column: 1 / 2;
  place-self: center end;
  font-size: 1.9rem;
  font-weight: bold;
  transition: all 1.2s;
}

.toShop:hover {
  background-position: 300% 100%;
  transition: all 1.2s;
  transform: translateX(20px);
}

.pop {
  cursor: pointer;
  background-color: var(--light-gray-color);
  width: 300px;
  height: 30px;
  z-index: 3;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  display: flex;
  position: fixed;
  bottom: 0;
  right: 10%;
}

.style-nav {
  color: var(--beautiful-blue-color);
}

/*# sourceMappingURL=index.34b7aba5.css.map */
