.mpReset, .mainIndex .mainBody .rowCard .productCard, .footer p {
  margin: 0;
  padding: 0; }

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

body {
  font-family: 'Sora', sans-serif; }

.header {
  min-height: 10vh;
  width: 100%; }
  .header .nav {
    min-height: 10vh;
    width: 100%;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #313132; }
    .header .nav a img {
      width: 25px; }

.mainIndex {
  min-height: 82vh; }
  .mainIndex .mainHeader {
    width: 80%;
    margin: 10vh auto;
    text-align: center; }
    .mainIndex .mainHeader .h1 {
      font-weight: bold; }
  .mainIndex .mainBody {
    width: 80%;
    margin: 10vh auto;
    text-align: center; }
    .mainIndex .mainBody .h1 {
      font-weight: bold; }
    .mainIndex .mainBody .h2 {
      margin: 5vh 0 10vh 0; }
    .mainIndex .mainBody .rowCard {
      justify-content: center; }
      .mainIndex .mainBody .rowCard .productCard {
        height: 40vh;
        width: 250px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        border: 1px solid gray; }
        .mainIndex .mainBody .rowCard .productCard .productImgContainer {
          height: 70%;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center; }
          .mainIndex .mainBody .rowCard .productCard .productImgContainer .productImg {
            width: 45%; }
        .mainIndex .mainBody .rowCard .productCard .linkToP {
          width: 100%;
          height: 30%; }
          .mainIndex .mainBody .rowCard .productCard .linkToP .productButton {
            width: 100%;
            height: 100%;
            background-color: #303030;
            color: white;
            transition: background-color 0.5s; }
          .mainIndex .mainBody .rowCard .productCard .linkToP .productButton:hover {
            background-color: black; }
    .mainIndex .mainBody .rowButton {
      display: flex;
      justify-content: center; }
      .mainIndex .mainBody .rowButton .colRow {
        margin: 5vh 5vw; }
        .mainIndex .mainBody .rowButton .colRow .button {
          padding: 10px 25px; }
    .mainIndex .mainBody .p {
      margin: 8vh 0; }

@media (max-width: 907px) {
  .mainIndex .mainBody .rowCard {
    flex-direction: column;
    align-items: center; } }

.footer {
  min-height: 8vh;
  background-color: #313132;
  display: flex;
  justify-content: center;
  align-items: center; }
  .footer p {
    text-align: center;
    color: white;
    font-size: 12px; }
