/*
Colors used:
Primary Color (Black): #0a0a0a;
Secondary Color (Blue): #2033b0;
Tertiary Color (PocketChange Blue): #0074E8
Super light (Accent grey): #d9d9d9
*/

:root {
  --margin-size: 0;
  --pocket-change-blue: #0074e8;
  --pocket-change-green: #1bd665;
  --pocket-change-text-color: #0a0a0a;
  --pocket-change-white: #fff;
  --pocket-change-light-grey: #757575;
  --pocket-change-accent-grey: #d9d9d9;
}


.pocket-change .section-header {
  font-weight: 300;
  color: var(--secondary-text-color);
}


/* Finance App Section */
.section-finance-app {
  margin-top: 3rem;
}

.section-finance-app .pocket-change-logo {
  display: flex;
  align-items: center;
  color: var(--pocket-change-text-color);
  font-size: 32px;
  width: 75px;
  height: 75px;
}

.section-finance-app .logo-blue {
  color: var(--pocket-change-blue);
}

.section-finance-app p {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

/* About Section */
.section-about .app-selling-points {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.section-about .app-selling-points li {
  position: relative;
  font-size: 1rem;
}

.section-about .app-selling-points span {
  color: green;
}

.section-about .app-selling-points li:not(:first-child)::before {
  content: "|";
  color: #d9d9d9;
  margin-right: 1rem;
}

/* Overall Design Process Section */
.design-process h4 {
  margin-bottom: .5rem;
}

.design-process .question:not(:last-of-type) {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--pocket-change-accent-grey);
}


/* Branding Section */
.branding-section .branding-logos {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-top: 2rem;
}

.branding-section .branding-logos img {
  max-width: 225px;
}

.branding-section .color-palette {
  margin-top: 3rem;
}

.branding-section .typography {
  margin-top: 3rem;
  margin-bottom: 1rem;
}




.pay-phone-img img {
  border-radius: 10px;
}

.light-grey-text {
  color: var(--pocket-change-light-grey);
}

.low-mid-wireframes .screens,
.high-fidelity-wireframes .screens {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 2rem;
  align-items: center;
}

.user-prototype-tests p {
  margin-bottom: 3rem;
}

.woman-mockup-screen img {
  border-radius: 10px;
}

.desktop-website p {
  margin-bottom: 32px;
}

.woman-mockup-screen img {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

/* Desktop Preview Section */
.desktop-website {
  margin-bottom: 4rem;
}

/* Final Preview Images Section */
.final-images .phone-two-rocks img {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.final-images .phone-one-rock img {
  margin-bottom: 32px;
}

.final-images img {
  border-radius: 10px;
}



/*******************************************************************************************************/
/*     Media Queries from here on down                                                                 */
/*******************************************************************************************************/

@media (max-width: 600px) {
  .section-about .app-selling-points {
    flex-direction: column;
    gap: 0.5rem;
  }

  .section-about .app-selling-points li:not(:first-child)::before {
    content: " ";
    margin-right: 0;
  }
}

a.prototype-link {
  font-size: 1.5em;
  color: blue !important;
  
}

a.prototype-link:hover {
  text-decoration: underline;
}