/* CSS Document */
html,
* {
box-sizing: border-box;
margin: 0;
}


/* Set up columns */
.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
}

.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

/* Team Sidebar */
.teamside {
  background-color: purple;
  text-align: center;
  width: 25%;
  padding: 20px;
  margin: 0px;
  line-height: 2;
}
h2.teamhead {
  font-family: "Bebas Neue";
  color: darkgray;
  letter-spacing: .15em;
  text-align: center;
}
h3.teamsub {
  font-family: "Bebas Neue";
  color: darkgray;
  letter-spacing: .15em;
  text-align: center;
  padding-bottom: .2em;
}
img.teamicon {
  width: 80%;
}
p.teambody {
  font-family: "Roboto Condensed";
  letter-spacing: .08em;
  text-align: left;
  color: white;
}
.main {
  text-align: center;
  background-color: black;
  padding: 20px;
  line-height: 2;
}
h2.philhead {
  font-family: "Bebas Neue";
  color: darkgray;
  letter-spacing: .15em;
}
h3.philsub {
  font-family: "Bebas Neue";
  color: darkgray;
  letter-spacing: .15em;
  text-align: center;
  padding-bottom: .5em;
}

.philbody {
  font-family: "Roboto Condensed";
  color: lightgray;
  letter-spacing: .15em;
  font-size: 1em;
  line-height: 1.5;
  padding: 0 5em 1.5em 5em;

}

.imgcaption {
  font-family: "Roboto Condensed";
  letter-spacing: .05em;
  text-align: center;
  color: magenta;
  padding-bottom: 1.5em;
}

.together {
  width: 67%;
}

.sunflowers {
  width: 80%;
}

.yetifoot {
  padding-top: 20px;
  text-align: center;
}

.row {
  background-color: purple;
}




@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  [class*="col-"] {
    width: 100%;
  }
}
