@import url('https://fonts.googleapis.com/css2?family=Stack+Sans+Notch:wght@200..700&display=swap');

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, sans-serif;
  font-weight: normal;
  background-color: #E5E5E5;
}

/* Navigation */

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #14213D;
  padding: 2rem 4rem;
  position: sticky;
  top: 0;
}

nav a {
  color: #FFFFFF;
  text-decoration: none;
}

#nexus {
  color: #FCA311;
}

.cart {
  font-size: 2rem;
  cursor: pointer;
  position: relative;
  color: #FFFFFF;
  transition: 0.2s ease;
}

.cart:hover {
  color: #FCA311;
}

/* Main Content */

main {
  display: flex;
  flex-direction: column;
}

.container {
  display: flex;
  justify-content: center;
}

.package {
  background-color: #FFFFFF;
  margin: 4rem 2rem;
  padding: 2rem;
  height: 40vh;
  width: 40vw;
  border-radius: 1rem;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.package hr {
  color: #14213D;
}

.info {
  display: flex;
  height: 70%;
}

.text {
  width: 50%;
  text-align: justify;
}

.text p {
  font-size: 1.25rem;
}

.product-name {
  color: #FCA311;
}

.product-image {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-image img {
  width: 80%;
  height: auto;
  border: 2px solid #14213D;
}

.products {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
}

.product p {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.quantity {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.quantity button {
  width: 2rem;
  height: 2rem;
  border: 2px solid #E5E5E5;
  border-radius: 0.75rem;
  background: white;
  font-size: 1.125rem;
  cursor: pointer;
  transition: 0.2s;
}

.quantity button:hover {
  border-color: #FCA311;
  color: #FCA311;
}

.quantity button:active {
  transform: scale(0.95);
}

.quantity input {
  width: 3.5rem;
  text-align: center;
}

.qty {
  width: 4rem;
  height: 2rem;
  text-align: center;
  font-size: 1.125rem;
  border: 2px solid #E5E5E5;
  border-radius: 0.75rem;
  outline: none;
  transition: 0.2s;
}

.qty:focus {
  border-color: #FCA311;
}

.qty::-webkit-outer-spin-button,
.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qty[type=number] {
  -moz-appearance: textfield;
}
