* {
  margin: 0;

  color: white;
}

body {
  background-color: #303030;
}

header {
  background-color: #f03a7e;

  text-align: center;

  font-family: 'Tangerine', Verdana, sans-serif;
  font-weight: 'bold';
  font-size: 2em;

  padding: 1em 0;
}

header h2 { 
  margin-top: .5em;
}

main {
  padding: 2em .5em;
}

section {
  font-family: Tahoma, sans-serif;

  font-weight: auto;

  padding-bottom: 6em;
}

section h2{
  font-family: 'Tangerine', Verdana, sans-serif;
  font-weight: 'bold';
  font-size: 5em;

  text-align: center;

  padding-bottom: .50em;
}

section#bio{
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 2em;

  padding-top: 3em;
}

section#bio p {
  max-width: 20em;
}

section#socials {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
}

section#testimonials {
  width: 75%;
  padding-left: 12.5%;
}

section#testimonials .quotes {
  display: flex;
  flex-flow: column nowrap;
  gap: 3em;
}

section#demos {
  padding: 0em 2em;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;

  width: 75%;
  padding-left: 12.5%;
}

section#demos .demoFrames {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 2em;
}

section#demos .demoFrame {
  padding-bottom: 2em;
}

section#demos .demoFrame h4 {
  padding-bottom: .75em;
}

@media (min-width: 746px) {
  header {
    font-size: 2.5em;
  }


  section#bio {
    gap: 10%;
  }

  section#testimonials .quotes {
    flex-flow: row wrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: center;
    justify-items: center;
  }

  section#testimonials .quotes p{
    max-width: 15em;
  }

  section#demos {
    grid-area: demos;
  }
}

@media (max-width: 300px) {
  section#bio img {
    width: 150px;
  }
}