﻿.container {
  max-width: 100%;
}

.products-header {
  background-color: var(--logoBlue);
  width: 100vw;
  margin-left: calc(-50vw + 50%); /* force full-width banner */
}

.products-title {
  font-family: "Segoe UI Black", sans-serif;
  font-size: 3rem;
  font-style: normal;
  padding-top: 2.5rem;
  color: white;
  text-align: center;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.products-body {
  font-family: "Segoe UI", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: white;
  font-size: 1.5rem;
  padding-top: 0.5rem;
  padding-bottom: 1.5rem;
  text-align: center;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.products-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.5rem;
  max-width: 100%;
  padding-top: 3rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.card {
  align-content: center;
  width: 30rem;
  margin: 0 auto;
  background-color: white;
  padding-top: 2rem;
  padding-bottom: 0.5rem;
  padding: 0.5rem;
  box-shadow: 0px 0.3rem 0.8rem #D3D3D3;
  border-radius: 25px;
}

.card:hover {
  transform: translateY(-5px);
  outline: solid 6px var(--logoOrange);
}

.product-image {
  display: flex;
  justify-content: center;
}

.product-name {
  text-align: center;
  vertical-align: bottom;
  padding-top: 0.5rem;
  font-family: var(--headerFont);
  font-size: 2.3rem;
  color: black;
}

.product-dev {
  text-align: center;
  vertical-align: bottom;
  padding-top: 0.5rem;
  font-family: var(--headerFont);
  font-size: 5.3rem;
  color: var(--logoBlue);
  /*text-shadow: 1px 1px 5px rgba(14,28,41,0.7);*/
  text-shadow: 4px 3px 0px #fff, 9px 8px 0px rgba(0, 0, 0, 0.15);
}

.product-description {
  text-align: center;
  vertical-align: bottom;
  font-family: var(--bodyFont);
  font-size: 1.4rem;
  font-weight: 500;
  color: darkslategrey;
  padding-bottom: 1rem;
}

.product-price {
  text-align: center;
  vertical-align: bottom;
  font-family: "Segoe UI Semibold", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: darkslategrey;
}

.links {
  text-decoration: none;
}
