/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: black;
  color: white;
  font-family: helvetica;
  text-align: center;
  overflow-x: hidden;
}
a:link {
  color: #ffa39f;
}
a:visited {
  color: #ffa39f;
}

.pagetopper {
  width: auto;
}
 
.pagetopper img {
  max-width: 75%;
  max-height: 100px;
}

.prodpics{
 max-width: 90%;
 margin: auto;
 justify-content: center;
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 10px;
}

.prodpics div{
  width: 100%;
  margin: auto;
}

.prodpics img{
  max-height: 100%;
  max-width: 100%;
}

 .desc{
   display: flex;
   width: 50%;
   margin: auto;
  text-align: center;
 }
 
 .ppbutt {
   display: flex;
   margin-left: auto;
   margin-right: auto;
   justify-content: center;
 }

 .ppbutt table {
    width: 100%;
 }
 