img {
  width: 100%;
}
table {
  width: 100%;
}
body {
  color: #212529;
  font-family: 'Montserrat', sans-serif;
}

strong {
  color: #000;
  font-size: 19px;
  font-weight: 300;
}

a {
  color: #25262a;
  text-decoration: none;
}

h2 {
  color: #25262a;
  font-size: 23px;
  font-weight: 500;
  margin: 0 0 40px 0;
}

button,
.button {
  font-size: 13px;
  display: inline-block;
  padding: 10px 20px;
  text-transform: uppercase;
  border-radius: 4px;
  font-weight: 300;
  cursor: pointer;
}

label {
  display: inline-block;
  margin-bottom: 10px;
}

input {
  display: block;
  margin-bottom: 30px;
  height: 43px;
  width: 300px;
  padding: 6px 12px;
  color: #495057;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 15px;
  outline: 0;
}

input:focus {
  border: 1px solid #7971ea;
  box-shadow: none !important;
}

.button-primary {
  color: #fff;
  background: #7971ea;
  border: 1px solid #7971ea;
}

.button-secondary {
  color: #7971ea;
  background: #fff;
  border: 1px solid #7971ea;
}

.button-warning {
  color: #dc3545;
  border: 1px solid #dc3545;
}

.button-large {
  font-size: 18px;
  font-weight: 300;
}

.price {
  color: #7971ea;
}

footer {
  text-align: center;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  min-height: 100vh;
}

/* Header */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 70px 0;
}

.logo {
  padding: 10px;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 500;
  border: 2px solid #25262a;
}
.nav-items a {
  padding-left: 10px;
}

/* Homepage */
#gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 25px;
}

#gallery .photo img {
  height: 250px;
  margin-bottom: 5px;
}

#gallery .photo a {
  text-align: center;
  text-transform: uppercase;
  font-size: 15px;
}

#product {
  display: flex;
  gap: 70px;
}
#product img {
  width: 400px;
}
#product .price {
  font-size: 25px;
}
table.order {
  margin-bottom: 40px;
}

/* Checkout */
table.order,
table.order td,
table.order th {
  border: 1px solid #dee2e6;
  border-collapse: collapse;
  text-align: center;
  padding: 20px;
}

#nagbar {
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
}

#nagbar div {
  padding: 10px;
  background-color: #7971ea;
}
