html, body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

* {
  box-sizing: border-box;
}

/* style the image of me */
#header img {
  width: 150px;
  min-width: 150px;
  max-width: 150px;
  height: 150px;
  min-height: 150px;
  max-height: 150px;
  margin: 50px auto 30px auto;
}

/* pronouns */
#header h1 span {
  color: #888; 
  font-weight: 300;
  letter-spacing:0; 
  text-transform: none;
}

/* Create two equal columns that float next to each other */
#main .column {
  float: left;
  width: 50%;
  padding: 10px;
  margin-bottom: 30px;
} 

.row {
   padding: 0 13% 0 13%;
}

#main .column {
   padding: 2rem;
}

#main .column p, .row>p {
   color: #474747;
   letter-spacing: 0.07rem;
   font-family: 'Source Sans Pro', sans-serif;
   line-height: 1.8;
   font-size: 1em;
}

#main .column a {
  color: #8e7d4f;
}

#main .column h3, .row h3 {
   color: #474747;
   letter-spacing: 0.07rem;
   font-family: 'Source Sans Pro', sans-serif;
   line-height: 1.8;
   font-size: 1.2em;
   font-weight: normal;
}

.row>p {
  text-align: center;
  line-height: 1.6;
}

.row h1 {
   text-align: center;
   text-transform: uppercase;
   font-family: 'Noto Sans', 'Raleway', sans-serif;
   color: #474747;
   letter-spacing: 0.5rem;
   font-size: 1.875em;
   font-weight: 700;
   margin: 0.2em;
}
  

.row h2 {
   text-align: center;
   text-transform: uppercase;
   color: #474747;
   font-family: 'Noto Sans', 'Raleway', sans-serif;
   letter-spacing: 0.25rem;
   font-size: 1.3em;
   font-weight: 300;
}
  
  
/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media (max-width: 700px) {
  #main .column {
    width: 100%;
  }
}




@media (max-width: 1000px) {
  .row {
    padding: 0 3% 0 3%;
  }
} 

@media (min-width: 701px) {
  .hidden-desktop {
     display: none;
  }
}



.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}





.collapsible {
  background-color: #8e7d4f;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.active, .collapsible:hover {
  background-color: #5f5434;
}

.collapsible:after {
  content: '\002B';
  color: white;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #f1f1f1;
}


#footer {
  background-color: #353535;
  color: #BBB;
  padding: 0;
  margin-top: 50px;
  width: 100%;
  font-family: Arial;
  font-size: 15px;
}

#footer p {
  margin: 6px 0;
  /* hanging-indent */
  padding-left: 24px;
  text-indent: -24px;
}

#footer a {
  color: #d6cbac !important;
  background-color: #353535;
  text-decoration: none;
}

#footer img {
  vertical-align: middle;
  width:20px;
  min-width:20px;
  max-width:20px;
  height:20px;
  min-height:20px;
  max-height:20px;
}

#footer .column {
  padding: 10px;
  border: 0;
  margin: 0 28px;
  padding: 0;
  float: left;
  height: 100px;
  min-width: 400px;
}

.container {
  margin: 40px auto 250px auto;
  max-width: 1400px;
}

#main {
  flex: 1;
}
